Skip to content

Core API Concepts (1.0.0)

Discovery

Identify and evaluate creators using structured, platform-specific search criteria. Responses are intentionally constrained to support ranking, filtering, and selection at scale rather than full profile hydration.

Enrichment

Retrieve complete creator-level data once a candidate has been identified. Enrichment responses provide the depth required for analysis, activation, and downstream data workflows.

Execution modes

Enrichment is available in both synchronous and asynchronous forms. Single enrichment supports real-time use cases, while batch enrichment is optimized for high-throughput, non-interactive processing.

Typical usage

Discovery and enrichment are designed as complementary stages. Discovery narrows the candidate set; enrichment supplies detailed data for creators that have already been qualified.

Languages
Servers
Production
https://api-dashboard.influencers.club
Operations
Operations

Provides the complete set of supported filter values used by the Discovery and Similar Creators endpoints.

These endpoints return all valid, platform-specific values (such as languages, locations, brands, YouTube topics, and Twitch games) that can be used when constructing discovery queries.

Clients should retrieve dictionary values programmatically to ensure only supported values are sent in requests. Available values may vary by platform and can evolve over time.

Operations

Request

Retrieve a list of location identifiers available for a specific platform.

What you get

  • Returns location strings that can be used to filter creators by geographic location in discovery searches.
  • Platform-specific location data helps target creators from specific regions, cities, or countries.

Credits

  • 0 credits. This endpoint does not deduct credits.
Security
Bearer
Path
platformstringrequired
curl -i -X GET \
  'https://api-dashboard.influencers.club/public/v1/discovery/classifier/locations/{platform}/' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Bodyapplication/json
any

A list of strings representing platform details

Response
application/json
null

Request

Retrieve a comprehensive list of brand names available for filtering in creator discovery searches. Returns brand identifiers including full names, cleaned names, and usernames that can be used to find creators who have worked with specific brands or mentioned them in their content. Credits - 0 credits. This endpoint does not deduct credits.

Security
Bearer
curl -i -X GET \
  https://api-dashboard.influencers.club/public/v1/discovery/classifier/brands/ \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Bodyapplication/jsonArray [
full_namestringrequired
cleanedstringrequired
usernamestringrequired
]
Response
application/json
[ { "full_name": "string", "cleaned": "string", "username": "string" } ]

Request

Retrieve a hierarchical list of YouTube topic categories and their subtopics.

What you get

  • Returns topic details and sub-topic details that can be used to discover YouTube creators who create content in specific categories or niches.
  • Useful for finding creators in particular content verticals or subject areas.

Credits

  • 0 credits. This endpoint does not deduct credits.
Security
Bearer
curl -i -X GET \
  https://api-dashboard.influencers.club/public/v1/discovery/classifier/yt-topics/ \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Bodyapplication/jsonArray [
topic_detailsstringrequired
sub_topic_detailsArray of stringsrequired
]
Response
application/json
[ { "topic_details": "string", "sub_topic_details": [ … ] } ]
Operations
Operations
Operations
Operations

Bulk enrichment jobs: create, check status, resume, and download results.

Operations
Operations

Account-level endpoints (credits, usage).

Operations