Skip to main content
POST
/
youtubeAdvancedSearch
cURL
curl --request POST \
  --url https://dev.creatordb.app/v2/youtubeAdvancedSearch \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --header 'apiId: LE6DPZQkR3TQShxofXoD2j8qCBu1-f0jti665m1t50dwDD12W' \
  --data '{
  "maxResults": 3,
  "sortBy": "subscribers",
  "offset": 0,
  "desc": true,
  "filters": [
    {
      "filterKey": "subscribers",
      "op": ">",
      "value": 10000
    }
  ]
}'
{
  "data": [
    "UCX6OQ3DkcsbYNE6H8uQQuVA",
    "UCq-Fj5jknLsUf-MWSy4_brA",
    "UCbCmjCuTUZos6Inko4u57UQ"
  ],
  "quotaUsed": 1,
  "quotaUsedTotal": 6025,
  "remainingPlanCredit": 993975,
  "remainingPrepurchasedCredit": 0,
  "timestamp": 1755503517048,
  "error": "",
  "success": true
}

Headers

apiId
string
required
Example:

"LE6DPZQkR3TQShxofXoD2j8qCBu1-f0jti665m1t50dwDD12W"

Body

application/json

For the list of available filterKey, please see here.

offset
number
required
maxResults
number
required
sortBy
string
required
desc
boolean
required
filters
object[]
required

Response

OK

data
string[]
quotaUsed
number

API credits that were used to make this call.

quotaUsedTotal
number

Total API credits used since the last billing cycle.

remainingPlanCredit
number

The number of remaining free API credits that come with your subscription plan. These API credits are renewed every billing cycle.

remainingPrepurchasedCredit
number

The number of remaining extra purchased API credits. These API credits do not expire until used.

timestamp
number

Unix timestamp of the call request that the server received.

error
string

Errors that occurred during the API call.

success
boolean

It is TRUE when the call is successful.

Last modified on February 25, 2026