Influencer API · Endpoint Endpoint reference

Influencer Connected Socials API

Get every platform connected to a creator

Is there an API to find every platform a creator is on?

Yes. The Influencers.club Connected Socials endpoint takes one known handle and returns the creator’s full cross-platform graph — every linked account across 47 platforms — so one Instagram handle becomes their YouTube, TikTok, Twitch, Twitter and more.

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/socials/
Auth Authorization: Bearer <API_KEY> Content type application/json Rate 0.5 credits per request Full reference →
curl -X POST https://api-dashboard.influencers.club/public/v1/creators/socials/ \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"platform": "instagram", "handle": "mrbeast"}'
import requests

res = requests.post(
    "https://api-dashboard.influencers.club/public/v1/creators/socials/",
    headers={"Authorization": "Bearer YOUR_API_KEY"},
    json={
        "platform": "instagram",
        "handle": "mrbeast"
    }, ) print(res.json())
const res = await fetch("https://api-dashboard.influencers.club/public/v1/creators/socials/", {
  method: "POST",
  headers: {
    Authorization: "Bearer YOUR_API_KEY",
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    "platform": "instagram",
    "handle": "mrbeast"
  }), }); const data = await res.json();
$ch = curl_init("https://api-dashboard.influencers.club/public/v1/creators/socials/");
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", "handle": "mrbeast"}');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
body := strings.NewReader(`{"platform": "instagram", "handle": "mrbeast"}`)
req, _ := http.NewRequest("POST", "https://api-dashboard.influencers.club/public/v1/creators/socials/", 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
{
  "result": [
    {
      "platform": "instagram",
      "url": "https://www.instagram.com/mrbeast",
      "user_id": "2278169415",
      "username": "mrbeast",
      "full_name": "MrBeast",
      "follower_count": 89241784,
      "engagement_percent": 1.13,
      "is_verified": true,
      "has_link_in_bio": true,
      "links_in_bio": [
        "https://feastables.com/",
        "https://linktr.ee/beastgames"
      ],
      "speaking_language": "en",
      "has_brand_deals": true,
      "is_creator": true,
      "location": "United States",
      "gender": "male"
    },
    {
      "platform": "youtube",
      "url": "https://www.youtube.com/channel/UCX6OQ3DkcsbYNE6H8uQQuVA",
      "user_id": "UCX6OQ3DkcsbYNE6H8uQQuVA",
      "username": "@mrbeast",
      "follower_count": 512000000,
      "engagement_percent": 2.52,
      "is_verified": false
    },
    {
      "platform": "tiktok",
      "url": "https://www.tiktok.com/@6614519312189947909",
      "user_id": "6614519312189947909",
      "username": "mrbeast",
      "follower_count": 138071183,
      "engagement_percent": 8.39,
      "is_verified": true
    },
    {
      "platform": "twitter",
      "url": "https://www.twitter.com/mrbeast",
      "username": "mrbeast",
      "follower_count": 34979265
    },
    {
      "platform": "twitch",
      "url": "https://twitch.tv/mrbeast6000",
      "username": "mrbeast6000",
      "follower_count": 637817
    }
  ],
  "credits_cost": 0.5 }
Response fields JSON always returned · docs on request
FieldTypeMeaning
Envelope
result[]arrayOne entry per connected account, seed platform included.
credits_costnumberCredits charged (0.5).
Each account
platformstringinstagram · youtube · tiktok · twitter · twitch · onlyfans · …
urlstringProfile URL.
user_id · username · full_namestringIdentity on that platform.
follower_countintegerFollowers or subscribers.
engagement_percentnumberEngagement rate (null where not computed).
is_verifiedbooleanVerified badge.
has_link_in_bio · links_in_bio[]boolean / arrayLinks found in the bio.
speaking_language · location · genderstringCreator attributes.
has_brand_deals · is_creator · is_businessbooleanRole and sponsorship flags.
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.

Fields that a platform doesn’t expose come back null (e.g. engagement on Twitch). Some entries above are trimmed for length.

Parameters

The spec

Parameter Type Accepted values Behaviour
POST /public/v1/creators/socials/ endpoint platform, handle One known handle in, every verified connected account out — with followers, engagement, verification, links in bio, language and location per platform. Flat 0.5 credits regardless of how many accounts come back.
platform string, required instagram · youtube · tiktok · twitch · twitter · onlyfans Platform of the handle you already have.
handle string, required username, profile URL or YouTube channel ID The seed account.

Billing. 0.5 credits per request, however many connected accounts come back. If the request fails, no credits are deducted.

Recipes

How teams use this endpoint

Three ways this fits a creator-data workflow.

One handle in

Every platform the creator is on, in one call.

platform: "instagram", "handle": "mrbeast"

Start from an email

Enrich by email first, then expand the graph.

POST /public/v1/creators/enrich/email/ { "email": "contact@mrbeastbusiness.com" }

POST /public/v1/creators/socials/ { "platform": "youtube", "handle": "<userId from the email lookup>" }

Pick the best platform to track

Use follower and engagement per platform to decide what to monitor.

POST /public/v1/social/listening/subscription/ {
  "name": "MrBeast on TikTok",
  "platform": "tiktok",
  "event_type": "new_post",
  "handles": ["mrbeast"],
  "notify_endpoints": [{ "destination": "https://example.com/webhooks/ic", "notify_type": "api" }] }

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?+

0.5 credits per request, however many connected accounts are returned. 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 get every platform connected to a creator using your API?+

Sign up for free and copy your API key from the dashboard. POST to /public/v1/creators/socials/ with a platform and one handle. You get back an array of every verified account connected to that creator — platform, URL, handle, followers, engagement, verification and bio links — for 0.5 credits.

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.