Skip to main content
The following instructions will walk you through making an API call to the CreatorDB server to get a YouTube creator’s data.

Before you start

To test out CreatorDB API 3.0, please contact our sales team to obtain the required credentials.
  1. Get an API key. For details, see Authentication.
  2. Make sure you have curl installed on your device.

How to get a YouTube creator’s data

Your API call must contain the following:
  • A host: The host for CreatorDB API v3 requests is https://apiv3.creatordb.app/.
  1. Get an API key. For details, see Authentication.
  • An Authorization header: The authorization header of the API call must include an API key.
  • A request: To retrieve data via the HTTP method GET, submit your payload in JSON. You must include the YouTube channel’s ID in the request parameter.
You can install a Chrome extension to retrieve YouTube channel ID information. Visit the Chrome Web Store for details.
CreatorDB recommends retrieving creator data using our API reference or an API platform like Postman for a better user experience and for a cleaner data layout.

Using the CreatorDB API reference

If you have never used an API reference before, follow the instructions below:
  1. Go to the CreatorDB API documentation.
  2. Expand API Endpoints.
  3. Click YouTube.
  4. Select Get YouTube creator profile information. youtube_creator_profile_1.png
  5. Click Try it.
  6. Copy and paste your API key into the api-key field.
  7. Copy and paste the YouTube channel ID into the channelId field.
  8. Click Send. The response is displayed in the top right corner. youtube_creator_profile_2.png youtube_creator_profile_3.png

Calling the CreatorDB API

If you are a developer and prefer using the Command Line Interface (CLI) to make API calls, follow the instructions below:
curl --request GET \
  --url 'https://apiv3.creatordb.app/youtube/profile?channelId=<<YouTube_Channel_ID>>'' \
  --header 'Accept: application/json' \
  --header 'api-key:<<YOUR_API_KEY>>'

  1. Copy the curl example.
  2. Paste the curl call into a text editor like Visual Studio Code.
  3. In the url section, copy and paste the YouTube channel ID in <<YouTube_CHANNEL_ID>>.
  4. In the api-key header section, replace <<YOUR_API_KEY>> with your API key.
  5. Copy the code and paste it into your terminal.
  6. Press Enter.
  7. The creator’s data is returned.
To get multiple creators’ account data, CreatorDB recommends writing a script or code that can asynchronously retrieve multiple creators’ data at the same time.
Last modified on February 24, 2026