Cetera eaque
2020
comedy
★ 9.9 (262934)
Overview
tv-shows / #2
2020
★ 9.9 (262934)
Cetera eaque
2020
★ 9.9
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/2" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/2" ); const tvShow = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/tv-shows.d.ts https://example-data.com/types/tv-shows.d.ts
import type { TvShow } from "./types/tv-shows";
const res = await fetch(
"https://example-data.com/api/v1/tv-shows/2"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/2"
)
tv_show = res.json() Response
{
"id": 2,
"title": "Cetera eaque",
"slug": "cetera-eaque-2",
"firstAired": "2020-02-23",
"lastAired": null,
"seasonCount": 14,
"episodeCount": 88,
"genres": [
"comedy"
],
"language": "German",
"posterUrl": "https://picsum.photos/seed/tvshow-2/400/600",
"rating": 9.9,
"ratingCount": 262934,
"status": "upcoming",
"createdAt": "2025-11-01T14:46:53.742Z"
}