Skip to main content
GET
/
api
/
creator
/
v1
/
brands
List discoverable brands
curl --request GET \
  --url https://app.openlight.tech/api/creator/v1/brands \
  --header 'Authorization: Bearer <token>'
{
  "brands": [
    {
      "id": "<string>",
      "name": "<string>",
      "status": "active",
      "description": "<string>",
      "logo_url": "<string>",
      "website": "<string>",
      "product_count": 123,
      "amazon_regions": [
        "<string>"
      ],
      "partnership_status": "pending"
    }
  ],
  "next_cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.openlight.tech/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer
default:25
Required range: x <= 100
cursor
string

Response

Creator-visible brands

brands
object[]
required
next_cursor
string | null