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.
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.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
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 (Retry-After: 29s).
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?
As of our last scheduled check, iTunes Search is dying with 6.0% uptime over 90 days and a 233 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.