Skip to content
GET /v1/music

Most-played songs chart

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/applecharts-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/applecharts-api/v1/music" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/applecharts-api/v1/music", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/applecharts-api/v1/music");
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/applecharts-api/v1/music",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "feed": "most-played",
        "note": "The most-played songs on Apple Music for a country, ranked — each with its rank, title, artist, genres, artwork and link. Pass country (storefront code, default us). The live Apple Music chart.",
        "count": 25,
        "songs": [
            {
                "id": "6769568596",
                "url": "https://music.apple.com/us/album/janice-stfu/6769568449?i=6769568596",
                "kind": "songs",
                "name": "Janice STFU",
                "rank": 1,
                "artist": "Drake",
                "genres": [
                    "Hip-Hop/Rap",
                    "Music"
                ],
                "artwork": "https://is1-ssl.mzstatic.com/image/thumb/Music211/v4/35/b9/06/35b90629-a873-14f8-4789-ffc324960038/26UMGIM63614.rgb.jpg/100x100bb.jpg",
                "release_date": "2026-05-15",
                "content_rating": "Explict"
            },
            {
                "id": "6769568598",
                "url": "https://music.apple.com/us/album/shabang/6769568449?i=6769568598",
                "kind": "songs",
                "name": "Shabang",
                "rank": 2,
                "artist": "Drake",
                "genres": [
                    "Hip-Hop/Rap",
                    "Music"
                ],
                "artwork": "https://is1-ssl.mzstatic.com/image/thumb/Music211/v4/35/b9/06/35b90629-a873-14f8-4789-ffc324960038/26UMGIM63614.rgb.jpg/100x100bb.jpg",
                "release_date": "2026-05-15",
                "content_rating": "Explict"
            },
            {
                "id": "1889992115",
                "url": "https://music.apple.com/us/album/stupid-song/1889992111?i=1889992115",
                "kind": "songs",
                "name": "stupid song",
                "rank": 3,
                "artist": "Olivia Rodrigo",
                "genres": [
                    "Pop",
                    "Music"
                ],
                "artwork": "https://is1-ssl.mzstatic.com/image/thumb/Music221/v4/1d/1b/f9/1d1bf9b1-44c6-9a6c-6ffb-c158488c06ce/26UMGIM39303.rgb.jpg/100x100bb.jpg",
                "release_date": "2026-06-12",
                "content_rating": null
            },
            {
                "id": "1844932150",
                "url": "https://music.apple.com/us/album/choosin-texas/1844932149?i=1844932150",
                "kind": "songs",
                "name": "Choosin' Texas",
                "rank": 4,
                "artist": "Ella Langley",
                "genres": [
                    "Country",
                    "Music"
                ],
                "artwork": "https://is1-ssl.mzstatic.com/image/thumb/Music221/v4/e2/91/4d/e2914d0a-7f1d-f04c-fbf4-c50b38548838/196873638690.jpg/100x100bb.jpg",
                "release_date": "2025-10-17",
                "content_rating": null
            },
            {
                "id": "6769568597",
                "url": "https:/
…