Social

Read public data from TikTok, Douyin, Xiaohongshu, Instagram, YouTube, X, and Reddit through typed, read-only tools — no platform account to connect.

Social is a CoreSpeed-hosted research capability. Its 38 tools read public data from seven platforms on CoreSpeed's own supplier account, so there is no OAuth grant to obtain and nothing for the agent to log in to. Every tool is read-only and typed per platform: the inputs are the platform's own identifiers and cursors, not a free-form URL to an arbitrary endpoint.

Tool names follow social__<platform>_<action>. The wire names and exact parameters come from tools/list; the tables below are the map.

Tools by platform

TikTok

ToolReturns
social__tiktok_video_by_urlOne video from a public share URL — author, stats, music, play and download URLs.
social__tiktok_profileA profile by user_id, sec_user_id, or unique_id (the @handle). Exactly one.
social__tiktok_user_videosA user's videos; paginate with max_cursor.
social__tiktok_video_commentsComments on a video by aweme_id; paginate with cursor.
social__tiktok_search_videosKeyword search with region, recency, and sort filters.

Douyin

ToolReturns
social__douyin_video_by_urlOne video or image post from a share URL or share text.
social__douyin_profileA profile by sec_user_id.
social__douyin_user_videosA user's videos; paginate with max_cursor.
social__douyin_video_commentsComments on a video by aweme_id; paginate with cursor.
social__douyin_hot_searchThe current hot-search ranking board.

Xiaohongshu

ToolReturns
social__xiaohongshu_search_notesKeyword search with sort, type, and time filters. Later pages pass back the search_id and search_session_id the first page returned.
social__xiaohongshu_profileA profile by user_id or profile share text. Exactly one.
social__xiaohongshu_user_notesA user's public notes; paginate with cursor.
social__xiaohongshu_note_commentsComments on a note by note_id or share text; paginate with cursor.

A nonexistent Xiaohongshu id still answers 200 upstream, so the request bills like any other successful one.

Instagram

ToolReturns
social__instagram_searchAccounts, hashtags, and places for a query; paginate with next_max_id + rank_token.
social__instagram_profileA profile by username.
social__instagram_user_postsA user's posts; paginate with after / before.
social__instagram_postOne post by media_id or public post URL. Exactly one.
social__instagram_post_commentsComments on a post by its shortcode; paginate with min_id.

Instagram tools bill at the premium rate (below).

YouTube

ToolReturns
social__youtube_searchVideos, channels, and playlists with upload-date, type, duration, and sort filters; paginate with continuation_token.
social__youtube_videoMetadata for one video by video_id or video_url — title, channel, stats, description, formats.
social__youtube_video_commentsComments on a video; paginate with continuation_token.
social__youtube_channel_videosA channel's videos by channel_id; paginate with continuation_token.
social__youtube_captionsCaption languages for a video, or one transcript as srt, xml, json3, or txt. Premium rate.
social__youtube_captions_resultCollects a captions job that answered processing. Free.

X

ToolReturns
social__x_postOne public post by numeric tweet_id.
social__x_profileA profile by screen_name or numeric rest_id. Exactly one.
social__x_user_postsA user's public posts; paginate with cursor.
social__x_searchKeyword search — search_type is Top, Latest, Media, People, or Lists; paginate with cursor.
social__x_post_commentsReplies to a post; paginate with cursor.
social__x_trendingTrending topics for a country.

Reddit

ToolReturns
social__reddit_searchPosts, communities, comments, media, or people for a query; paginate with after.
social__reddit_postOne post by id (t3_… or bare), optionally focused on one comment.
social__reddit_post_commentsComments on a post; paginate with after.
social__reddit_subredditPublic information about a subreddit (name without r/).
social__reddit_subreddit_feedA subreddit's posts — sort is BEST, HOT, NEW, TOP, CONTROVERSIAL, or RISING; paginate with after.
social__reddit_profileA user profile (name without u/).
social__reddit_user_postsA user's posts; paginate with after.

Responses are JSON, and they can be large

Each tool returns the platform's payload as compact JSON text. Feeds carry many CDN URLs, so every tool accepts max_characters — default 200,000, hard cap 600,000. A clipped response ends with an explicit truncation notice that says so; raise max_characters or narrow the request (a smaller count, one page) to see the rest. Cursors are the platform's own and are returned in the payload; pass them back verbatim.

YouTube captions are asynchronous

social__youtube_captions without language_code lists the caption languages a video has. With one, it returns that transcript. A large video comes back as { "status": "processing", "job_id": "…" } instead — collect it with social__youtube_captions_result, a single non-blocking poll: queued or active means try again in 2–5 seconds, completed carries the transcript in content. Only captions the video already has are returned; there is no speech-to-text, and a video without captions still bills the request.

Pricing and holds

Exactly one charge per successful request, by the tool's cost class:

ClassToolsCharge
StandardEverything not listed below1.5 credits per request
PremiumThe five instagram_* tools and youtube_captions12 credits per request
Freeyoutube_captions_result0

A failed request — network error, upstream rejection, or arguments that fail the tool's schema — never charges. The live figure is in each tool's description in tools/list, and each charge lands in the organization ledger labelled by platform (tiktok, xiaohongshu, …); see Billing & credits. An organization billing hold or suspension stops a social call before it runs, as an isError result carrying payment_required or org_suspended, and API-key spend caps apply the same way.

What is deliberately not exposed

Account and login helpers, private-message deep links, an arbitrary-endpoint proxy, and any engagement-manipulation endpoint. The surface is public research data only, and the typed inputs are what keep it that way.

Controls

Social appears as Social media research in Dashboard → Capabilities. Turning it off hides every social__* tool from tools/list for that member; see Capability controls.