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
Creator identifier — username, profile URL, or YouTube channel ID (UC...).
Example:"creator_handle"
POST
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
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"
}'Response
{ "credits_cost": 0.03, "result": { "twitter": { … }, "twitch": { … }, "onlyfans": { … }, "youtube": { … }, "tiktok": { … }, "instagram": { … }, "facebook": { … }, "pinterest": { … }, "reddit": { … }, "snapchat": { … }, "discord": { … }, "linkedin": { … } } }