Data
Movie search (iTunes) API
Search movies via the keyless Apple iTunes Search API and get a clean normalized result (title, director, year, genre, content rating, runtime, price, artwork, store URL, iTunes id). Emulates IMDb/OMDb movie lookups without an API key. Answers 'find the movie The Matrix','what year did Inception come out','runtime of a film','movie genre and rating'.
Price$0.01per request
MethodPOST
Route/v1/data/media-movie-search
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
mediamoviefilmimdbsearchitunescinemaentertainment
API URL
Integration docshttps://x402.hexl.dev/v1/data/media-movie-searchExample request
{
"query": "The Matrix",
"limit": 5
}Example response
{
"query": "The Matrix",
"count": 1,
"movies": [
{
"title": "The Matrix",
"director": "The Wachowskis",
"year": 1999,
"releaseDate": "1999-03-31T08:00:00Z",
"genre": "Action & Adventure",
"rating": "R",
"runtimeMinutes": 136,
"description": "A computer hacker learns the truth about his reality.",
"price": 9.99,
"currency": "USD",
"artworkUrl": "https://is1-ssl.mzstatic.com/.../600x600bb.jpg",
"url": "https://itunes.apple.com/us/movie/the-matrix/id275278343",
"trackId": 275278343
}
]
}Input schema
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"examples": [
"The Matrix",
"Inception"
]
},
"limit": {
"type": "number",
"default": 15,
"examples": [
10
]
},
"country": {
"type": "string",
"examples": [
"US"
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}