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, Twitch games, audience brand categories, audience brand names, audience interests, and audience locations) 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

Returns a list of audience brand categories (e.g., Sports, Fashion, Technology) from Instagram creator audience data. Use these values in the audience.brand_categories filter on the Discovery API to search for Instagram creators (10k+ followers) whose audience follows brands in specific categories.

Credits

  • 0 credits. This endpoint does not deduct credits.
Security
Bearer
Query
searchstring

Search string to filter results

offsetinteger

Cursor offset for pagination

curl -i -X GET \
  'https://api-dashboard.influencers.club/public/v1/discovery/classifier/audience-brand-categories/?search=string&offset=0' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

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

Request

Returns a list of audience brand names (e.g., Nike, Apple, Starbucks) from Instagram creator audience data. Use these values in the audience.brands filter on the Discovery API to search for Instagram creators (10k+ followers) whose audience follows specific brands.

Credits

  • 0 credits. This endpoint does not deduct credits.
Security
Bearer
Query
searchstring

Search string to filter results

offsetinteger

Cursor offset for pagination

curl -i -X GET \
  'https://api-dashboard.influencers.club/public/v1/discovery/classifier/audience-brand-names/?search=string&offset=0' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

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

Request

Returns a list of audience interest values from Instagram creator audience data. Use these values in the audience.interests filter on the Discovery API to search for Instagram creators (10k+ followers) whose audience has specific interests.

Credits

  • 0 credits. This endpoint does not deduct credits.
Security
Bearer
Query
searchstring

Search string to filter results

offsetinteger

Cursor offset for pagination

curl -i -X GET \
  'https://api-dashboard.influencers.club/public/v1/discovery/classifier/audience-interests/?search=string&offset=0' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

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

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

Operations
Operations

Account-level endpoints (credits, usage).

Operations