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

Request

Perform comprehensive enrichment of a creator profile using their social media handle.

What you get

  • Returns complete profile data including cross-platform presence, engagement analytics, follower growth metrics, content performance data, monetization indicators, niche classification, hashtags, income estimates, and optional lookalike creator recommendations.
  • Supports Instagram, YouTube, TikTok, OnlyFans, Twitter, Snapchat, Discord, Pinterest, Facebook, LinkedIn, and Twitch platforms.
  • Optional email requirement and lookalike inclusion settings available.

Credits

  • 1 credit 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"
email_requiredstring or null
Default "preferred"
Enum"must_have""preferred"null
include_lookalikesboolean or null

Set to false to exclude lookalikes and get a faster response.

Default true
include_audience_databoolean or null

Include audience insights in the response. Available for Instagram, Tiktok and Youtube.

Default false
curl -i -X POST \
  https://api-dashboard.influencers.club/public/v1/creators/enrich/handle/full/ \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "handle": "string",
    "platform": "instagram",
    "email_required": "must_have",
    "include_lookalikes": true,
    "include_audience_data": false
  }'

Responses

Bodyapplication/json
resultobject(HandleFullResultResponse)
credits_costnumber or null(double)
Response
application/json
{ "result": { "email": "user@example.com", "location": "string", "speaking_language": "string", "first_name": "string", "has_link_in_bio": true, "has_brand_deals": true, "is_business": true, "is_creator": true, "email_type": "string", "audience_data": {}, "instagram": { … }, "youtube": { … }, "tiktok": { … }, "onlyfans": { … }, "twitter": { … }, "twitch": { … }, "linkedin": { … } }, "credits_cost": 0.1 }
Operations
Operations
Operations

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

Operations
Operations

Account-level endpoints (credits, usage).

Operations