Skip to main content
POST
/
sponsor
/
search
Search for Brands Based on Influencer Marketing Activity
curl --request POST \
  --url https://apiv3.creatordb.app/sponsor/search \
  --header 'Content-Type: application/json' \
  --header 'api-key: <api-key>' \
  --data '
{
  "filters": [
    {
      "filterName": "industry",
      "op": "in",
      "value": [
        "Computer",
        "ConsumerElectronics"
      ]
    },
    {
      "filterName": "sponsoringRegion",
      "op": "=",
      "value": "USA"
    }
  ],
  "desc": true,
  "sortBy": "name",
  "pageSize": 20,
  "offset": 0
}
'
{
  "data": {
    "results": [
      {
        "brandId": "acer.com",
        "name": "Acer",
        "logo": "https://i.imgur.com/bazrFjP.png",
        "industries": [
          "Computer",
          "Consumer Electronics"
        ],
        "country": "TWN"
      }
    ],
    "totalResults": 342,
    "offset": 0,
    "pageSize": 20
  },
  "traceId": "f8e4a3b2c1d0e9f8a7b6c5d4e3f2a1b0",
  "timestamp": 1750732453635,
  "creditsAvailable": 975,
  "creditsUsed": 25,
  "errorCode": "<string>",
  "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.

Body

application/json

Search for sponsoring brands by attributes, influencer marketing activity, or associated creators.

filters
object[]
required

List of filter objects. Each object requires filterName, op, and value. String filters also accept optional isFuzzySearch for fuzzy matching. If empty, no filters are applied.

pageSize
integer
required

Number of results per page. Maximum:100.

Required range: 1 <= x <= 100
offset
integer
required

Number of records to skip before returning results.

Required range: x >= 0
desc
boolean

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

sortBy
string

Field to sort brands by. For example, totalFollowers, sorts by follower count.

Response

200 - application/json

Sponsors search results returned successfully.

Sponsor Search API response. Contains search results in data, along with credit usage, trace info, and error details.

data
object
required

Sponsor search response with matching brands and pagination information.

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.

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