Data
iOS App Store search (iTunes) API
Search the iOS App Store via the keyless Apple iTunes Search API, normalized to name, seller, genre(s), version, price, average rating, rating count, content rating, file size, minimum OS, description, screenshots, store URL, and id. Answers 'find an iOS app','what is an app's rating','how big is an app','app price and version'.
Price$0.01per request
MethodPOST
Route/v1/data/media-ios-app-search
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
mediaappiosappstoresoftwareitunesmobileapple
API URL
Integration docshttps://x402.hexl.dev/v1/data/media-ios-app-searchExample request
{
"query": "Things 3",
"limit": 3
}Example response
{
"query": "Things 3",
"count": 1,
"apps": [
{
"name": "Things 3",
"seller": "Cultured Code GmbH & Co. KG",
"genre": "Productivity",
"genres": [
"Productivity"
],
"version": "3.20",
"price": 9.99,
"currency": "USD",
"rating": 4.75,
"ratingCount": 12000,
"contentRating": "4+",
"fileSizeBytes": 52428800,
"minimumOsVersion": "15.0",
"description": "The award-winning personal task manager.",
"artworkUrl": "https://is1-ssl.mzstatic.com/.../600x600bb.png",
"screenshots": [
"https://.../s1.png"
],
"url": "https://apps.apple.com/us/app/things-3/id904237743",
"trackId": 904237743
}
]
}Input schema
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"examples": [
"Things 3",
"Notion"
]
},
"limit": {
"type": "number",
"default": 15,
"examples": [
10
]
},
"country": {
"type": "string",
"examples": [
"US"
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}