Tools / Social Profiles
Social Profiles icon

Social Profiles

Bios, followers & audience data

Retrieve public profile data from 13 platforms: TikTok, Instagram, YouTube, Twitter/X, LinkedIn, Facebook, Reddit, Threads, Bluesky, Snapchat, Twitch, and Truth Social. Get follower counts, bios, verification, and audience data for influencer vetting and creator research.

18 skillsv0.02
Get TikTok Profile

Retrieve a TikTok user profile including bio, follower count, following count, likes, and verified status.

Returns: TikTok profile with bio, follower count, following count, total likes, and verification status
Parameters
handle *stringTikTok username or handle
Example
Look up a TikTok creator
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-profiles",
  "skill": "get_tiktok_profile",
  "input": {
    "handle": "charlidamelio"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get Instagram Profile

Retrieve an Instagram user profile including bio, follower count, following count, post count, and verified status.

Returns: Instagram profile with bio, follower count, following count, post count, and verification status
Parameters
handle *stringInstagram username or handle
Example
Look up an Instagram account
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-profiles",
  "skill": "get_instagram_profile",
  "input": {
    "handle": "natgeo"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get YouTube Channel

Retrieve a YouTube channel profile including description, subscriber count, total views, video count, and creation date.

Returns: YouTube channel with description, subscriber count, total views, video count, and join date
Parameters
handle *stringYouTube handle (e.g. @mkbhd)
Example
Look up a YouTube channel
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-profiles",
  "skill": "get_youtube_channel",
  "input": {
    "handle": "@mkbhd"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get Twitter Profile

Retrieve a Twitter/X user profile including bio, follower count, following count, tweet count, and verified status.

Returns: Twitter profile with bio, follower count, following count, tweet count, and verification status
Parameters
handle *stringTwitter/X username or handle
Example
Look up a Twitter account
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-profiles",
  "skill": "get_twitter_profile",
  "input": {
    "handle": "elonmusk"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get LinkedIn Profile

Retrieve a LinkedIn personal profile including headline, summary, experience, education, and connection count.

Returns: LinkedIn profile with headline, summary, experience, education, skills, and connection count
Parameters
url *stringFull LinkedIn profile URL
Example
Look up a LinkedIn profile
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-profiles",
  "skill": "get_linkedin_profile",
  "input": {
    "url": "https://www.linkedin.com/in/satyanadella/"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get LinkedIn Company

Retrieve a LinkedIn company page including description, industry, employee count, headquarters, and specialties.

Returns: LinkedIn company with description, industry, employee count, headquarters, and founded year
Parameters
url *stringFull LinkedIn company profile URL
Example
Look up a LinkedIn company page
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-profiles",
  "skill": "get_linkedin_company",
  "input": {
    "url": "https://www.linkedin.com/company/google/"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get Facebook Profile

Retrieve a Facebook profile or page including name, bio, follower count, likes, and category information.

Returns: Facebook profile with name, bio, follower count, page likes, and category
Parameters
url *stringFull Facebook profile URL
Example
Look up a Facebook page
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-profiles",
  "skill": "get_facebook_profile",
  "input": {
    "url": "https://www.facebook.com/zuck"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get Reddit Subreddit

Retrieve subreddit information including description, member count, active users, creation date, and rules.

Returns: Subreddit info with description, member count, active users, creation date, and community rules
Parameters
subreddit *stringSubreddit name without the r/ prefix (e.g. "programming")
Example
Look up a subreddit
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-profiles",
  "skill": "get_reddit_subreddit",
  "input": {
    "subreddit": "programming"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get Threads Profile

Retrieve a Threads user profile including bio, follower count, following count, and verified status.

Returns: Threads profile with bio, follower count, following count, and verification status
Parameters
handle *stringThreads username or handle
Example
Look up a Threads account
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-profiles",
  "skill": "get_threads_profile",
  "input": {
    "handle": "zuck"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get Bluesky Profile

Retrieve a Bluesky user profile including display name, bio, follower count, following count, and post count.

Returns: Bluesky profile with display name, bio, follower count, following count, and post count
Parameters
handle *stringBluesky username or handle
Example
Look up a Bluesky account
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-profiles",
  "skill": "get_bluesky_profile",
  "input": {
    "handle": "jay.bsky.team"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get Truth Social Profile

Retrieve a Truth Social user profile including display name, bio, follower count, following count, and post count.

Returns: Truth Social profile with display name, bio, follower count, following count, and post count
Parameters
handle *stringTruth Social username or handle
Example
Look up a Truth Social account
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-profiles",
  "skill": "get_truthsocial_profile",
  "input": {
    "handle": "realDonaldTrump"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get Snapchat Profile

Retrieve a Snapchat user profile including display name, bitmoji, subscriber count, and snap score information.

Returns: Snapchat profile with display name, bitmoji, subscriber count, and snap score
Parameters
handle *stringSnapchat username or handle
Example
Look up a Snapchat account
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-profiles",
  "skill": "get_snapchat_profile",
  "input": {
    "handle": "djkhaled305"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get Twitch Profile

Retrieve a Twitch streamer profile including bio, follower count, total views, broadcaster type, and creation date.

Returns: Twitch profile with bio, follower count, total views, broadcaster type, and account creation date
Parameters
handle *stringTwitch username or handle
Example
Look up a Twitch streamer
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-profiles",
  "skill": "get_twitch_profile",
  "input": {
    "handle": "ninja"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get TikTok Followers

Retrieve the list of followers for a TikTok user, including their usernames, display names, and profile details.

Returns: List of TikTok followers with usernames, display names, and profile details
Parameters
handle *stringTikTok username or handle
Example
Get followers of a TikTok creator
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-profiles",
  "skill": "get_tiktok_followers",
  "input": {
    "handle": "charlidamelio"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get TikTok Following

Retrieve the list of accounts a TikTok user is following, including their usernames, display names, and profile details.

Returns: List of TikTok accounts the user follows with usernames, display names, and profile details
Parameters
handle *stringTikTok username or handle
Example
Get accounts a TikTok creator follows
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-profiles",
  "skill": "get_tiktok_following",
  "input": {
    "handle": "charlidamelio"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get TikTok Audience Demographics

Get audience demographic data for a TikTok user. Currently returns audience breakdown by country. Costs 26 credits.

Returns: Audience location breakdown with country names, codes, counts, and percentages
Parameters
handle *stringTikTok username or handle
Example
Get audience demographics for a TikTok creator
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-profiles",
  "skill": "get_tiktok_audience",
  "input": {
    "handle": "charlidamelio"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Get Reddit Subreddit Details

Get detailed information about a subreddit including description, rules, moderators, and community settings. Pass a subreddit name or URL.

Returns: Detailed subreddit info with description, rules, moderators, and community settings
Parameters
subredditstringSubreddit name without r/ prefix
urlstringFull subreddit URL (alternative to name)
Example
Get details about a subreddit
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-profiles",
  "skill": "get_reddit_subreddit_details",
  "input": {
    "subreddit": "programming"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Detect Creator Age and Gender

Estimate the age and gender of a social media creator using AI analysis of their profile photo. The profile photo must clearly show a face.

Returns: Estimated age range and gender of the creator based on their profile photo
Parameters
url *stringURL of the profile image or social media profile page
Example
Estimate age and gender from a profile
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "social-profiles",
  "skill": "detect_age_gender",
  "input": {
    "url": "https://www.tiktok.com/@creator"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Loading reviews...
Loading activity...
v0.022026-03-22
  • Added subtitle, expanded description, and agent instructions
v0.012026-03-20
  • Initial release

Quick Start

MCP (Claude Code)
claude mcp add --transport stdio \
  --env TOOLROUTER_API_KEY=YOUR_API_KEY \
  toolrouter -- npx -y toolrouter-mcp
REST API
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{"tool":"social-profiles","skill":"get_tiktok_profile","input":{}}' \
  https://api.toolrouter.com/v1/tools/call

Use Cases

Open Research Influencer Profiles

Research Influencer Profiles

Pull detailed profile data from multiple platforms to vet influencers before partnerships.

Social Profiles icon
Social Profiles
4 agent guides
Open Build Competitor Social Profiles

Build Competitor Social Profiles

Gather social media profile data for competitors to benchmark their presence and strategy.

Social Profiles icon
Social Profiles
4 agent guides
Open Search Papers by Topic

Search Papers by Topic

Find relevant academic papers on any research topic across millions of scholarly publications.

Academic Research icon
Academic Research
4 agent guides
Open Geocode Addresses to Coordinates

Geocode Addresses to Coordinates

Convert street addresses into precise latitude and longitude coordinates for mapping and spatial analysis.

Address Geocoding icon
Address Geocoding
4 agent guides
View all use cases for Social Profiles

Workflows

Open Competitor Analysis Suite

Competitor Analysis Suite

Build a complete competitive intelligence dossier by combining company research, SEO analysis, social media audits, and ad library searches.

Competitor Research icon
Competitor Research
SEO Analysis icon
SEO Analysis
Social Profiles icon
Social Profiles
Ad Library Search icon
Ad Library Search
4 steps4 tools
Open Link Building Research

Link Building Research

Research link building opportunities by analyzing backlink profiles, finding prospects, identifying contacts, and researching their social presence.

SEO Analysis icon
SEO Analysis
Web Search icon
Web Search
Lead Finder icon
Lead Finder
Social Profiles icon
Social Profiles
4 steps4 tools
Open Social Media Growth Kit

Social Media Growth Kit

Accelerate social media growth by auditing your profiles, discovering trends, analyzing top content, and generating visuals.

Social Profiles icon
Social Profiles
Trending Social Content icon
Trending Social Content
Social Media Content icon
Social Media Content
Generate Image icon
Generate Image
4 steps4 tools
Open Influencer Discovery

Influencer Discovery

Discover and vet potential influencer partners by profiling their audience, searching niche creators, evaluating engagement quality, and finding contacts.

Social Profiles icon
Social Profiles
Social Media Search icon
Social Media Search
Social Media Comments icon
Social Media Comments
Lead Finder icon
Lead Finder
4 steps4 tools
View all 7workflows →

Frequently Asked Questions

Do I need a handle or a full URL?

Most platforms use a handle, including TikTok, Instagram, YouTube, X, Threads, Bluesky, Snapchat, Twitch, and Truth Social. LinkedIn and Facebook use full profile or company URLs, and Reddit uses the subreddit name.

Which platforms give me follower and bio data?

The profile lookups return follower counts, bios, and verification details across the supported platforms, which makes it easy to vet creators, brands, and communities at a glance.

Can I look at TikTok audience or network data?

Yes. The TikTok profile family includes audience breakdowns plus follower and following lookups, so you can map who a creator reaches and how their network connects.

Can I estimate demographics from a profile photo?

Yes. The tool includes a photo-based age and gender estimate for cases where you need a rough audience signal from an avatar or headshot.