Deripio creptio capillus currus
2012
mysterydocumentary
★ 4.3 (482498)
Overview
tv-shows / #3
2012
★ 4.3 (482498)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/3" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/3" ); 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/3"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/3"
)
tv_show = res.json() Response
{
"id": 3,
"title": "Deripio creptio capillus currus",
"slug": "deripio-creptio-capillus-currus-3",
"firstAired": "2012-01-02",
"lastAired": "2014-02-01",
"seasonCount": 5,
"episodeCount": 5,
"genres": [
"mystery",
"documentary"
],
"language": "English",
"posterUrl": "https://picsum.photos/seed/tvshow-3/400/600",
"rating": 4.3,
"ratingCount": 482498,
"status": "ended",
"createdAt": "2024-11-04T00:31:43.174Z"
}