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

Request

Discover all verified social accounts connected to a creator, given a seed platform and handle.

What you get

  • Returns an array of verified connected social accounts across platforms, including platform name, username, and follower count for each connected account.
  • Supports 11 seed platforms: Instagram, YouTube, TikTok, OnlyFans, Twitter, Snapchat, Discord, Pinterest, Facebook, LinkedIn, and Twitch.

Credits

  • 0.5 credits per successful request. If no data is returned, no credits are deducted.
Security
Bearer
Bodyrequired
platformstringrequired
Enum"instagram""youtube""tiktok""onlyfans""twitter""snapchat""discord""pinterest""facebook""linkedin"
handlestringnon-emptyrequired

Creator identifier — username, profile URL, or YouTube channel ID (UC...).

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

Responses

Bodyapplication/json
resultArray of objects(ConnectedSocial)required
result[].​platformstringnon-emptyrequired
result[].​userIdstring or nullnon-empty
result[].​urlstring or nullnon-empty
result[].​usernamestring or nullnon-empty
result[].​fullnamestring or nullnon-empty
result[].​picturestring or nullnon-empty
result[].​followersinteger or null
credits_costnumberrequired
Response
application/json
{ "result": [ { … } ], "credits_cost": 0 }
Operations
Operations
Operations
Operations

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

Operations
Operations
Operations

Account-level endpoints (credits, usage).

Operations