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

Request

Retrieve raw platform data for a creator profile using their social media handle.

What you get

  • Returns unprocessed platform-specific data directly from the source, including basic profile information, post data, media counts, and platform-native metadata.
  • This endpoint provides the foundational data layer before any additional processing or enrichment.
  • Supports Instagram, YouTube, TikTok, OnlyFans, Twitter, Snapchat, Discord, Pinterest, Facebook, and LinkedIn platforms.

Credits

  • 0.03 credits per successful request. If no data is returned, no credits are deducted.
Security
Bearer
Bodyrequired
handlestringnon-emptyrequired
platformstringrequired
Enum"instagram""youtube""tiktok""onlyfans""twitter""snapchat""discord""pinterest""facebook""linkedin"
curl -i -X POST \
  https://api-dashboard.influencers.club/public/v1/creators/enrich/handle/raw/ \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "handle": "string",
    "platform": "instagram"
  }'

Responses

Bodyapplication/json
credits_costnumber or null(double)
resultobject(HandleRawResultResponse)
Response
application/json
{ "credits_cost": 0.1, "result": { "twitter": { … }, "twitch": { … }, "onlyfans": { … }, "youtube": { … }, "tiktok": { … }, "instagram": { … }, "facebook": { … }, "pinterest": { … }, "reddit": { … }, "snapchat": { … }, "discord": { … }, "linkedin": { … } } }
Operations
Operations

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

Operations
Operations

Account-level endpoints (credits, usage).

Operations