Skip to main content
GET
/
brands
List brands
curl --request GET \
  --url https://www.trybloom.ai/api/v1/brands \
  --header 'x-api-key: <api-key>'
{
  "data": {
    "brands": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>",
        "url": "<string>",
        "imageCount": 123,
        "workspaceId": "<string>",
        "workspaceName": "<string>",
        "createdAt": "2023-11-07T05:31:56Z"
      }
    ],
    "nextCursor": "<string>",
    "hasMore": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://www.trybloom.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Query Parameters

workspaceId
string

Team workspace ID. Scopes results to that workspace. Omit to list across every workspace the caller can see.

Minimum string length: 1
limit
integer
default:50

Results per page (1–100, default 50)

Required range: 1 <= x <= 100
cursor
string

Pagination cursor from a previous response's nextCursor

Response

OK

data
object
required