Skip to main content
GET
/
sponsor
/
list
List All Indexed Brands (Paginated Directory)
curl --request GET \
  --url https://apiv3.creatordb.app/sponsor/list \
  --header 'api-key: <api-key>'
{
  "data": {
    "brands": [
      {
        "brandId": "acer.com",
        "name": "Acer",
        "logo": "https://i.imgur.com/bazrFjP.png",
        "industries": [
          "Computer",
          "Consumer Electronics",
          "Hardware"
        ],
        "country": "TWN",
        "sponsoringPlatforms": [
          "YouTube",
          "Instagram"
        ],
        "totalSponsoredContent": 1
      }
    ],
    "totalBrands": 10342,
    "offset": 0,
    "pageSize": 100
  },
  "traceId": "f8e4a3b2c1d0e9f8a7b6c5d4e3f2a1b0",
  "timestamp": 1750732453635,
  "creditsAvailable": 975,
  "creditsUsed": 25,
  "errorCode": "",
  "errorDescription": "",
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.creatordb.app/llms.txt

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

Authorizations

api-key
string
header
required

The valid CreatorDB API key for authentication.

Query Parameters

pageSize
string
default:100

Number of brands per page. Default: 100. Maximum: 100

Example:

"100"

offset
string
default:0

Number of brands to skip before returning results. Default: 0

Example:

"0"

sortBy
enum<string>
default:name

Field to sort brands by. Accepted values: "name", "totalSponsoredContent"

Available options:
name,
totalSponsoredContent
Example:

"name"

desc
string
default:false

Sort order for results. true for descending, false for ascending order. Default: false

Example:

"false"

Response

200 - application/json

Sponsoring brand list returned successfully.

Sponsor List API response with paginated brands

data
object
required

Brand list with pagination metadata (total count, current offset, and page size).

traceId
string
required

Unique trace ID for each request.

Example:

"f8e4a3b2c1d0e9f8a7b6c5d4e3f2a1b0"

timestamp
integer
required

Time the response was generated, represented as a Unix timestamp in milliseconds.

Example:

1750732453635

creditsAvailable
number
required

Remaining credits available for this API key after the current request.

Example:

975

creditsUsed
number
required

Number of API credits consumed by this request.

Example:

25

errorCode
string
required

Error code returned if the request fails. Empty if the request is successful.

Example:

""

errorDescription
string
required

Description of the error. Empty if the request is successful.

Example:

""

success
boolean
required

true if the request is successful.

Example:

true

Last modified on April 28, 2026