Desino turpis tantum voluptatum
2001
animation
★ 1.9 (379396)
Overview
tv-shows / #49
2001
★ 1.9 (379396)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/49" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/49" ); 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/49"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/49"
)
tv_show = res.json() Response
{
"id": 49,
"title": "Desino turpis tantum voluptatum",
"slug": "desino-turpis-tantum-voluptatum-49",
"firstAired": "2001-11-30",
"lastAired": null,
"seasonCount": 3,
"episodeCount": 24,
"genres": [
"animation"
],
"language": "Spanish",
"posterUrl": "https://picsum.photos/seed/tvshow-49/400/600",
"rating": 1.9,
"ratingCount": 379396,
"status": "running",
"createdAt": "2024-06-13T15:58:27.656Z"
}