# TikTok Song Videos API (https://www.socialcrawl.dev/platforms/tiktok/song-videos) > Returns videos that use a specific TikTok sound/song. Each video includes engagement metrics, author info, and caption. TL;DR: `GET /v1/tiktok/song/videos` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `clipId` | no | TikTok sound/song clip ID | | `cursor` | no | The cursor to get the next page of results. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/tiktok/song/videos" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I list TikTok videos that use a sound? Send a GET request to /v1/tiktok/song/videos with the clipId parameter set to the sound id. SocialCrawl returns a paginated list of videos using the sound with engagement metrics, author info, and captions. ### What fields does each video include? Each video returns video id, url, caption, view count, like count, comment count, share count, thumbnail URL, creation timestamp, and author handle in the unified post schema. ### Where does the TikTok sound clipId come from? The clipId is returned on the Post endpoint (music.id) and on the /v1/tiktok/song endpoint. You can also copy it from a TikTok sound URL — the last path segment after /music/ is the clipId. ### How do I paginate through all videos using a TikTok sound? Read the cursor field from the response and pass it as the cursor parameter on your next request. Repeat until cursor is 0 or empty to collect every public video using the sound. ### How much does the TikTok Song Videos API cost? Each request costs 1 credit on the standard tier regardless of how many videos are returned per page. New accounts get 100 free credits with no credit card required. See the full TikTok API: https://www.socialcrawl.dev/platforms/tiktok ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - How to list videos using a TikTok sound with the SocialCrawl API - What does the SocialCrawl TikTok Song Videos endpoint return?