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
Operations
Operations
Operations
Operations

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

Operations
Operations

Request

Retrieve detailed information about specific creator content including post data, comments, transcripts, or audio files.

What you get

  • Supports Instagram, TikTok, and YouTube platforms.
  • Returns platform-specific content metadata and engagement data in a structured format.

Credits

  • 0.03 credits per successful request. If no data is returned, no credits are deducted.
Security
Bearer
Bodyrequired
platformstringrequired
Enum"instagram""tiktok""youtube"
content_typestringnon-emptyrequired

Type of content to fetch. Platform-specific.

post_idstringnon-emptyrequired

ID of the post, e.g., '3702042988674165349_1541770582'.

pagination_tokenstring

Pagination token, optional.

curl -i -X POST \
  https://api-dashboard.influencers.club/public/v1/creators/content/details/ \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "platform": "instagram",
    "content_type": "string",
    "post_id": "string",
    "pagination_token": "string"
  }'

Responses

Bodyapplication/json
credits_costnumber or null(double)
resultobject

A dictionary of arbitrary key-value pairs.

Response
application/json
{ "credits_cost": 0.1, "result": { "property1": "string", "property2": "string" } }

Account-level endpoints (credits, usage).

Operations