Social Reader
Read any social media URL, profile, or feed
Read any social media URL, profile, or feed. Auto-detects platform from URLs across TikTok, Instagram, YouTube, Twitter/X, Facebook, LinkedIn, Reddit, Threads, Bluesky, Pinterest, Twitch, Kick, Snapchat, and Truth Social. Also reads RSS feeds and web pages.
Paste any social media URL — auto-detects the platform and content type and returns structured data. Falls back to clean markdown for unrecognized URLs.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "social-reader",
"skill": "read_url",
"input": {
"url": "https://x.com/elonmusk/status/1234567890123456789"
}
}' \
https://api.toolrouter.com/v1/tools/callGet profile data for any social media account by username and platform. Returns bio, follower counts, engagement metrics, and profile details.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "social-reader",
"skill": "read_profile",
"input": {
"handle": "charlidamelio",
"platform": "tiktok"
}
}' \
https://api.toolrouter.com/v1/tools/callGet recent posts from any social media account. Supports content type filtering: Instagram (posts, reels, highlights), YouTube (videos, shorts), Facebook (posts, reels, photos).
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "social-reader",
"skill": "read_posts",
"input": {
"handle": "natgeo",
"platform": "instagram"
}
}' \
https://api.toolrouter.com/v1/tools/callGet the comment thread for any post URL. Supports TikTok, YouTube, Instagram, Facebook, Reddit, Twitter, and Threads.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "social-reader",
"skill": "read_comments",
"input": {
"url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
}
}' \
https://api.toolrouter.com/v1/tools/callSearch for content across social platforms. Specify a platform for focused search, or omit to search TikTok, YouTube, Twitter, and Reddit simultaneously.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "social-reader",
"skill": "search_posts",
"input": {
"query": "cooking tips",
"platform": "tiktok"
}
}' \
https://api.toolrouter.com/v1/tools/callGet trending content. TikTok: videos, songs, hashtags, creators, or For You feed. YouTube: trending Shorts.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "social-reader",
"skill": "get_trending",
"input": {
"platform": "tiktok"
}
}' \
https://api.toolrouter.com/v1/tools/callParse any RSS or Atom feed URL. Returns structured feed items with titles, links, descriptions, dates, and authors.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "social-reader",
"skill": "read_feed",
"input": {
"url": "https://blog.example.com/feed.xml"
}
}' \
https://api.toolrouter.com/v1/tools/callRead any web page as clean markdown text. Strips navigation, ads, and boilerplate to extract the main content.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "social-reader",
"skill": "read_webpage",
"input": {
"url": "https://www.bbc.com/news/technology-12345678"
}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"social-reader","skill":"read_url","input":{}}' \
https://api.toolrouter.com/v1/tools/call