Influencer API · Endpoint Endpoint reference

Influencer Audience Overlap API

Compare audience overlap between creators

Is there an API to compare audience overlap between creators?

Yes. The Influencers.club Audience Overlap endpoint takes 2–10 creators on the same platform and returns total followers, unique followers and pairwise overlap percentages — so you can see how much reach you’d actually be buying twice before booking creators together.

Verified against the live API in Endpoint reference →

What this endpoint returns

Counted on the live search index, not modelled or rounded.

Measured
340M+
Searchable Influencer profiles
40+
Data points returned per creator
47
Platforms mapped in the social graph
6
Platforms with full discovery support
Request

Make the call

Both samples below are complete. Paste one in, swap the key, get a 200.

POST https://api-dashboard.influencers.club/public/v1/creators/audience/overlap/
Auth Authorization: Bearer <API_KEY> Content type application/json Rate 1 credit per request Full reference →
curl -X POST https://api-dashboard.influencers.club/public/v1/creators/audience/overlap/ \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"platform": "instagram", "creators": ["mrbeast", "khaby00"]}'
import requests

res = requests.post(
    "https://api-dashboard.influencers.club/public/v1/creators/audience/overlap/",
    headers={"Authorization": "Bearer YOUR_API_KEY"},
    json={
        "platform": "instagram",
        "creators": [
            "mrbeast",
            "khaby00"
        ]
    }, ) print(res.json())
const res = await fetch("https://api-dashboard.influencers.club/public/v1/creators/audience/overlap/", {
  method: "POST",
  headers: {
    Authorization: "Bearer YOUR_API_KEY",
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    "platform": "instagram",
    "creators": [
      "mrbeast",
      "khaby00"
    ]
  }), }); const data = await res.json();
$ch = curl_init("https://api-dashboard.influencers.club/public/v1/creators/audience/overlap/");
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_HTTPHEADER, [
  "Authorization: Bearer YOUR_API_KEY",
  "Content-Type: application/json", ]);
curl_setopt($ch, CURLOPT_POSTFIELDS, '{"platform": "instagram", "creators": ["mrbeast", "khaby00"]}');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
body := strings.NewReader(`{"platform": "instagram", "creators": ["mrbeast", "khaby00"]}`)
req, _ := http.NewRequest("POST", "https://api-dashboard.influencers.club/public/v1/creators/audience/overlap/", body)
req.Header.Set("Authorization", "Bearer YOUR_API_KEY")
req.Header.Set("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
Response

What comes back

A 200 with the page of creators and your remaining credit balance. Creator values below are elided — field names and types are exactly as published in the API schema.

200 OKJSON
{
  "success": true,
  "basics": {
    "total_followers": 167441652,
    "total_unique_followers": 166906760
  },
  "details": [
    {
      "user": {
        "user_id": "2278169415",
        "username": "mrbeast",
        "fullname": "MrBeast",
        "url": "https://www.instagram.com/mrbeast",
        "followers": 89360181,
        "is_verified": true,
        "engagements": 820746
      },
      "username": "mrbeast",
      "followers": 89360181,
      "unique_percentage": 0.994014,
      "overlapping_percentage": 0.005986
    },
    {
      "user": {
        "user_id": "779085683",
        "username": "khaby00",
        "fullname": "Khabane Lame",
        "url": "https://www.instagram.com/khaby00",
        "followers": 78081471,
        "is_verified": true,
        "engagements": 594415
      },
      "username": "khaby00",
      "followers": 78081471,
      "unique_percentage": 0.99315,
      "overlapping_percentage": 0.00685
    }
  ],
  "credits_left": 356.68,
  "credits_cost": 1.0 }
Response fields JSON always returned · docs on request
FieldTypeMeaning
Envelope
successbooleanWhether the comparison ran.
basics.total_followersintegerSum of all creators’ followers.
basics.total_unique_followersintegerDe-duplicated reach across the set.
details[]arrayOne entry per creator compared.
credits_costnumberCredits charged (1).
Each creator
usernamestringHandle on the platform.
followersintegerFollower count.
unique_percentagenumberShare of this creator’s audience not reached by the others (0–1).
overlapping_percentagenumberShare also following at least one other creator in the set (0–1).
user.engagementsintegerAverage engagements per post.
user.is_verifiedbooleanVerified badge.
Errors (400 / 403 / 429)
error_codestringMachine-readable slug, e.g. insufficient_credits. Always present on errors — branch on this, not on error.
errorstringHuman-readable description of what went wrong.
retry_afterintegerSeconds to wait before retrying a 429; mirrored in the Retry-After header.

Instagram, TikTok and YouTube only. Percentages are fractions (0.0059 = 0.59%). Pass usernames or full profile URLs.

Parameters

The spec

Parameter Type Accepted values Behaviour
POST /public/v1/creators/audience/overlap/ endpoint platform, creators (2–10) Compares 2–10 creators on one platform (Instagram, TikTok or YouTube). Returns report-level totals plus a per-creator unique and overlapping share. One flat credit per request.
platform string, required instagram · tiktok · youtube Platform all creators are on.
creators array, required 2–10 usernames or profile URLs The creators to compare.

Billing. 1 credit per request, whatever the number of creators (2–10) compared. If the request fails, no credits are deducted.

Recipes

How teams use this endpoint

Three ways this fits a creator-data workflow.

Two creators, one number

See how much of a duo’s reach is double-counted.

platform: "instagram", "creators": ["mrbeast", "khaby00"]

Check a whole shortlist

Up to 10 creators in one call, still 1 credit.

POST /public/v1/creators/audience/overlap/ {
  "platform": "tiktok",
  "creators": ["khaby.lame", "bellapoarch", "charlidamelio", "addisonre"] }

Discover first, then de-dupe

Run Discovery, take the top handles, drop the ones whose audiences overlap.

POST /public/v1/discovery/ { "platform": "instagram", "filters": { "ai_search": "clean beauty creators in the UK" } }

POST /public/v1/creators/audience/overlap/ { "platform": "instagram", "creators": ["<handle_1>", "<handle_2>", "<handle_3>"] }

Other creator data you can access

Influencer API endpoints

Platform coverage

Six platforms with full data, 40+ more in the social graph

Plus Facebook, Pinterest, Reddit, LinkedIn, Discord, Snapchat,
Linktree and 40+ more via connected socials.

FAQ

Frequently asked questions

What does this endpoint cost?+

1 credit per request, whether you compare 2 or 10 creators. If the request fails, no credits are deducted.

Where can I find my API key?+

Create a free account. You will find your API key through the API side menu.

How do I compare audience overlap between creators using your API?+

Sign up for free and copy your API key from the dashboard. POST to /public/v1/creators/audience/overlap/ with a platform (instagram, tiktok or youtube) and 2–10 creator handles. You get back total and unique followers for the set, plus each creator’s unique and overlapping percentage. 1 credit per request.

What are your pricing plans and what do they include?+

Paid plans start at $249/month and use a flexible credit-based model.

Each API call consumes a specific number of credits depending on the endpoint and data depth. You can compare all tiers, credit amounts, and per-endpoint costs in the Pricing section of our API docs.

How can I get in touch with your team?+

Book a time on our calendar to talk to someone from our team and learn about the full capabilities of our API.