Perform basic enrichment of creator profiles using an email address.
What you get
- Returns the creator's single strongest platform — the one with the highest follower count — with essential profile data: basic social media presence, contact details, and platform account identifiers.
- Ideal for quick profile lookups and initial creator identification across Instagram, YouTube, TikTok, Twitter, Twitch, and OnlyFans.
Credits
- 0.05 credits per successful request. If no data is returned, no credits are deducted.
Security
Bearer
POST
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
curl -i -X POST \
https://api-dashboard.influencers.club/public/v1/creators/enrich/email/ \
-H 'Authorization: Bearer <YOUR_API_KEY_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"email": "creator@example.com"
}'Response
{ "result": { "platform": "string", "userId": "string", "url": "string", "username": "string", "fullname": "string", "picture": "string", "followers": 0 }, "credits_cost": 0.05 }