Data
TV show lookup (TVmaze) API
Search TV shows (TVmaze): genre, status, network, rating, premiere date, summary. For media/entertainment agents. Answers 'info about Breaking Bad', 'what network is show X on', 'is this show still running', 'rating of Y'.
Price$0.01per request
MethodPOST
Route/v1/data/tv-show
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache86400s public
datatvtelevisionshowstvmazemediaentertainmentseries
API URL
Integration docshttps://x402.hexl.dev/v1/data/tv-showExample request
{
"query": "breaking bad",
"limit": 1
}Example response
{
"query": "breaking bad",
"shows": [
{
"name": "Breaking Bad",
"type": "Scripted",
"language": "English",
"genres": [
"Drama",
"Crime"
],
"status": "Ended",
"premiered": "2008-01-20",
"rating": 9.2,
"network": "AMC",
"summary": "A high-school chemistry teacher turned meth manufacturer…",
"url": "https://www.tvmaze.com/shows/169/breaking-bad"
}
]
}Input schema
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"examples": [
"breaking bad"
]
},
"limit": {
"type": "number",
"default": 5
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}