跳转到主要内容
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.

授权

Authorization
string
header
必填

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

查询参数

limit
integer
默认值:25
必填范围: x <= 100
cursor
string

响应

Creator-visible brands

brands
object[]
必填
next_cursor
string | null