Skip to main content

Overview

CreatorDB supports searching YouTube, Instagram, TikTok, Threads, and Facebook with predefined filters. When making the API call, you can specify which predefined filters you’d like to add to your search using the POST method. Supported filters vary based on the social media platform.

API Call Flow

1

Get creator's ID.

Use the advanced search API to find and get creator IDs based on specified filter conditions. You can filter creators by country, platform metrics, YouTube audience demographics, etc. Note only YouTube audience demographics is currently available.
2

Get creator's detailed data and performance metrics.

Use the creator ID obtained from calling the advanced search API to make data API requests to get the creator’s detailed information and performance metrics. You can get the creator’s basic profile information, account’s historical performance data, contact information, and more.
API call flow

Request Body Parameters

NameRequiredTypeExampleDescription
offsetTruenumber0Specifies the number of records to skip before returning results. For example, if the offset is 5,001 and there are 10,000 search results, the returned data will skip the first 5,000 results.
maxResultsTruenumber100The maximum number of records to return. The maximum number of search results returned per call is 2,500. After the 2,500 result, you must specify the offset value to get the remaining results.
sortByFalsestringsubscribersThe field to sort results by. For example, if the value is subscribers, the creators that meet the search criteria are organized by the number of subscribers they have.
descTruebooleantrueSpecifies whether the data returned should be sorted in descending order. When the value is true, it will return data in descending order. Otherwise, when false the returned data will be in ascending order.
filtersTrueobject[]An array of filter objects that includes: filterKey,op, and value.
└─ filterKeyTruestringsubscribersThe field to apply the filter on.
└─ opTruestring=The comparison operator. Available values include in, >, =, <. Note that all string type filter values support the operation in.
└─ valueTruestring/number/boolean/string10000The data type depends on the filterKey:
-subscribers (number)
-mainLanguage (string)
-hasEmail (boolean)
For more details, see: Configuring Advanced Search Filters and Examples
Last modified on February 9, 2026