Compare audience overlap between 2-10 creators on a given platform.
What you get
- Returns per-creator audience overlap and unique audience percentages, plus report-level totals (total followers and total unique followers across all compared creators).
- Useful for evaluating creator partnerships, identifying audience duplication across campaigns, and optimizing influencer selection for maximum reach.
Credits
- 1 credit per request, regardless of how many creators are compared.
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/audience/overlap/ \
-H 'Authorization: Bearer <YOUR_API_KEY_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"platform": "instagram",
"creators": [
"creator_handle_1",
"creator_handle_2"
]
}'Response
{ "credits_cost": 1, "credits_left": 0.1, "status": true, "success": true, "basics": { "total_followers": 0, "total_unique_followers": 0 }, "details": [ { … } ] }