GET
/tiktok/songs/popularGet Popular Songs
Get the most popular songs and sounds on TikTok right now. Returns trending audio with usage counts.
Quick Start
cURL
curl "https://api.creatorcrawl.com/v1/tiktok/songs/popular" \
-H "x-api-key: YOUR_API_KEY"Parameters
This endpoint takes no parameters. Just call it with your API key.
Response
JSON Response
{
"songs": [
{
"id": "7123456789",
"title": "Trending Sound",
"authorName": "Original Artist",
"usageCount": 2500000
}
]
}Every request costs 1 credit. Response data is live -- never cached.
Use Cases
Sound strategy
Find trending sounds to use in your TikTok content for maximum reach.
Music industry analytics
Track which songs are gaining traction on TikTok before they chart.
Content planning
Plan content around trending sounds to ride engagement waves.
Code Examples
Python
import requests
resp = requests.get(
"https://api.creatorcrawl.com/v1/tiktok/songs/popular",
headers={"x-api-key": "YOUR_API_KEY"},
)
for song in resp.json()["songs"]:
print(f"{song['title']} by {song['authorName']} - {song['usageCount']} uses")JavaScript
const resp = await fetch(
"https://api.creatorcrawl.com/v1/tiktok/songs/popular",
{ headers: { "x-api-key": "YOUR_API_KEY" } }
)
const { songs } = await resp.json()
songs.forEach(s => console.log(`${s.title} by ${s.authorName} - ${s.usageCount} uses`))