Skip to content

Enrich by handle raw

Enrich by handle raw

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
handlestringrequired

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

Example:"creator_handle"
platformstringrequired

Platform to enrich from (e.g., instagram, youtube).

Enum:"instagram""youtube""tiktok""onlyfans""twitter""snapchat""discord""pinterest""facebook""linkedin"
Example:"instagram"
POST
/public/v1/creators/enrich/handle/raw/
curl -i -X POST \
  https://api-dashboard.influencers.club/public/v1/creators/enrich/handle/raw/ \
  -H 'Authorization: Bearer <YOUR_API_KEY_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "handle": "creator_handle",
    "platform": "instagram"
  }'

Responses

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