iTunes Search
Search Apple Music, iTunes, App Store and podcasts
Apple's public iTunes Search API returns music, apps, movies, books and podcasts as JSON with artwork URLs and preview links. No key required; keep requests modest per Apple's guidance. Widely used for music metadata and podcast directories.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://itunes.apple.com/search?term=beatles&limit=1
{
"resultCount": 1,
"results": [
{
"wrapperType": "audiobook",
"artistId": 160778930,
"collectionId": 1439484338,
"artistName": "Bob Spitz",
"collectionName": "The Beatles (Abridged)",
"collectionCensoredName": "The Beatles (Abridged)",
"artistViewUrl": "https://books.apple.com/us/author/bob-spitz/id160778930?uo=4",
"collectionViewUrl": "https://books.apple.com/us/audiobook/the-beatles-abridged/id1439484338?uo=4"
}
]
}curl "https://itunes.apple.com/search?term=beatles&limit=1"const res = await fetch("https://itunes.apple.com/search?term=beatles&limit=1");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://itunes.apple.com/search?term=beatles&limit=1")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/search?term=beatles&limit=1PROBEDSearch Apple Music, iTunes, App Store and podcasts
/search?limit=5Search by query parameters.
/search?page=1Search by query parameters.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
iTunes Search: common questions
Is iTunes Search free to use?
Yes — iTunes Search is a free media API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does iTunes Search need an API key?
No — iTunes Search needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call iTunes Search from the browser?
Not directly — iTunes Search doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is iTunes Search up right now?
iTunes Search is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.