Skip to content

Connected Socials

Request

Discover all verified social accounts connected to a creator, given a seed platform and handle.

What you get

  • Returns an array of verified connected social accounts across platforms, including platform name, username, and follower count for each connected account.
  • Supports 6 seed platforms: Instagram, YouTube, TikTok, OnlyFans, Twitter, and Twitch.

Credits

  • 0.5 credits per successful request. If no data is returned, no credits are deducted.
Security
Bearer
Bodyrequired
platformstringrequired
Enum:"instagram""youtube""tiktok""onlyfans""twitter""twitch"
Example:"instagram"
handlestringrequired

Creator identifier — username, profile URL, or YouTube channel ID (UC...).

Example:"creator_handle"
POST
/public/v1/creators/socials/
curl -i -X POST \
  https://api-dashboard.influencers.club/public/v1/creators/socials/ \
  -H 'Authorization: Bearer <YOUR_API_KEY_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "platform": "instagram",
    "handle": "creator_handle"
  }'

Responses

Bodyapplication/json
resultArray of objects(ConnectedSocial)required
credits_costnumber, (double)required
Example:0.5
response_metaobjectrequired
Response
{ "result": [ {} ], "credits_cost": 0.5, "response_meta": { "property1": null, "property2": null } }