Sustineo copia solvo ciminatio dicta
2006
thrillerromance
★ 1.1 (401683)
Overview
tv-shows / #24
2006
★ 1.1 (401683)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/24" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/24" ); 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/24"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/24"
)
tv_show = res.json() Response
{
"id": 24,
"title": "Sustineo copia solvo ciminatio dicta",
"slug": "sustineo-copia-solvo-ciminatio-dicta-24",
"firstAired": "2006-04-19",
"lastAired": null,
"seasonCount": 1,
"episodeCount": 0,
"genres": [
"thriller",
"romance"
],
"language": "German",
"posterUrl": "https://picsum.photos/seed/tvshow-24/400/600",
"rating": 1.1,
"ratingCount": 401683,
"status": "running",
"createdAt": "2024-03-22T08:39:02.729Z"
}