/v1/trending
Trending tracks
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/audiodb-api/v1/trending" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/audiodb-api/v1/trending", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/audiodb-api/v1/trending");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/audiodb-api/v1/trending",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"type": "itunes",
"count": 10,
"format": "singles",
"country": "us",
"trending": [
{
"album": "This Wasn't Meant for You Anyway",
"place": 10,
"track": "Messy",
"artist": "Lola Young",
"artist_id": "168085"
},
{
"album": "GNX",
"place": 9,
"track": "peekaboo",
"artist": "Kendrick Lamar",
"artist_id": "114357"
},
{
"album": "Cool It Down",
"place": 8,
"track": "Spitting Off the Edge of the World",
"artist": "Yeah Yeah Yeahs",
"artist_id": "112051"
},
{
"album": "Where I've Been, isn't Where I'm Going",
"place": 7,
"track": "A Bar Song",
"artist": "Shaboozey",
"artist_id": "178899"
},
{
"album": "Short n' Sweet",
"place": 6,
"track": "Please Please Please",
"artist": "Sabrina Carpenter",
"artist_id": "137425"
},
{
"album": "Beautiful Things",
"place": 5,
"track": "Beautiful Things",
"artist": "Benson Boone",
"artist_id": "170797"
},
{
"album": "MAYHEM",
"place": 4,
"track": "Abracadabra",
"artist": "Lady Gaga",
"artist_id": "111236"
},
{
"album": "GNX",
"place": 3,
"track": "squabble up",
"artist": "Kendrick Lamar",
"artist_id": "114357"
},
{
"album": "GNX",
"place": 2,
"track": "tv off",
"artist": "Kendrick Lamar",
"artist_id": "114357"
},
{
"album": "The Rise and Fall of a Midwest Princess",
"place": 1,
"track": "Pink Pony Club",
"artist": "Chappell Roan",
"artist_id": "179579"
}
]
},
"meta": {
"timestamp": "2026-06-08T01:20:07.134Z",
"request_id": "bdc124ee-e98e-45a0-9bfc-0c6c07e76e47"
},
"status": "ok",
"message": "Trending retrieved successfully",
"success": true
}