# TikTok Song API (https://www.socialcrawl.dev/platforms/tiktok/song) > Returns details about a specific TikTok sound/song including title, artist, duration, usage count, and cover image. TL;DR: `GET /v1/tiktok/song` 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` | yes | TikTok sound/song clip ID | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/tiktok/song?clipId=7439295283975702544" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get TikTok sound details with an API? Send a GET request to /v1/tiktok/song with the clipId parameter. SocialCrawl returns the sound's title, artist name, duration, usage count (how many videos use it), and cover image URL. ### Where do I find the TikTok sound clipId? The clipId is returned on the Post endpoint (music.id) and the song/videos endpoint. You can also copy it from a TikTok sound URL — the last path segment after /music/ is the clipId. ### What does usage count mean for a TikTok sound? Usage count is TikTok's video count for that sound — how many public videos currently use the track. It is the most direct signal of a sound's virality at the moment of your request. ### Can I list videos that use a TikTok sound? Yes. Call /v1/tiktok/song/videos with the same clipId to get a paginated list of videos using the sound, each with the standard view, like, comment, and share counts. ### How much does the TikTok Song API cost? Each request costs 1 credit on the standard tier. New accounts get 100 free credits with no credit card required, so you can pull around 100 sounds before paying anything. 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 get TikTok sound details with the SocialCrawl API - What does the SocialCrawl TikTok Song endpoint return?