Skip to main content
POST
/
getRelatedNiches
cURL
curl --request POST \
  --url https://dev.creatordb.app/v2/getRelatedNiches \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --header 'apiId: LE6DPZQkR3TQShxofXoD2j8qCBu1-f0jti665m1t50dwDD12W' \
  --data '{
  "platform": "youtube",
  "nicheIds": [
    "id_youtuber_Entertainment"
  ]
}'
{
  "data": {
    "platform": "youtube",
    "nicheIds": [
      "NICHES_0",
      "NICHES_1",
      "NICHES_2"
    ]
  },
  "quotaUsed": 1,
  "quotaUsedTotal": 6025,
  "remainingPlanCredit": 993975,
  "remainingPrepurchasedCredit": 0,
  "timestamp": 1755503517183,
  "error": "",
  "success": true
}

Headers

apiId
string
required
Example:

"LE6DPZQkR3TQShxofXoD2j8qCBu1-f0jti665m1t50dwDD12W"

Body

application/json

platform support youtube only, and nicheIds is a list of nicheId, max 30 niches can be used.

The search criteria for retrieving related niches.

nicheIds
string[]
required

A list of niche IDs that represent the creator's interest that is explicitly used in searches to initiate the recommendation system. The niche IDs used here will only look up stored values in a database.

platform
enum<string>
required

The social media platform where niche recommendations are being made, such as YouTube, Instagram, or TikTok.

Available options:
youtube,
instagram,
tiktok

Response

OK

data
object
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