Data
TV network shows (TVmaze) API
Resolve a TV network or web channel by name and list shows carried on it with rating, genres and status, sorted by rating (TVmaze). Answers 'shows on HBO', 'what network airs this', 'top-rated Netflix shows'.
Price$0.01per request
MethodPOST
Route/v1/data/screen-network
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache86400s public
datatvnetworkchanneltvmazebroadcastershowsscreen
API URL
Integration docshttps://x402.hexl.dev/v1/data/screen-networkExample request
{
"query": "HBO",
"limit": 1
}Example response
{
"query": "HBO",
"network": {
"name": "HBO",
"country": "United States",
"countryCode": "US"
},
"showCount": 1,
"shows": [
{
"id": 82,
"name": "Game of Thrones",
"type": "Scripted",
"genres": [
"Drama",
"Adventure",
"Fantasy"
],
"status": "Ended",
"premiered": "2011-04-17",
"rating": 8.9,
"network": "HBO",
"url": "https://www.tvmaze.com/shows/82/game-of-thrones"
}
]
}Input schema
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"examples": [
"HBO"
]
},
"limit": {
"type": "number",
"default": 25
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}