Skip to main content
GET
/
api
/
creator
/
v1
/
products
List products visible to the creator
curl --request GET \
  --url https://app.openlight.tech/api/creator/v1/products \
  --header 'Authorization: Bearer <token>'
{
  "products": [
    {
      "id": "<string>",
      "brand_id": "<string>",
      "asin": "<string>",
      "title": "<string>",
      "status": "<string>",
      "image_url": "<string>",
      "detail_page_url": "<string>",
      "marketplace_id": "<string>",
      "country_code": "<string>",
      "price_cents": 123,
      "currency": "<string>"
    }
  ],
  "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

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

Response

Products visible to the creator

products
object[]
required
next_cursor
string | null