Coaegresco ancilla terebro confero
2018
adventuremystery
★ 8.6 (492051)
Overview
tv-shows / #1
2018
★ 8.6 (492051)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/1" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/1" ); 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/1"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/1"
)
tv_show = res.json() Response
{
"id": 1,
"title": "Coaegresco ancilla terebro confero",
"slug": "coaegresco-ancilla-terebro-confero-1",
"firstAired": "2018-08-04",
"lastAired": "2025-11-08",
"seasonCount": 2,
"episodeCount": 21,
"genres": [
"adventure",
"mystery"
],
"language": "English",
"posterUrl": "https://picsum.photos/seed/tvshow-1/400/600",
"rating": 8.6,
"ratingCount": 492051,
"status": "ended",
"createdAt": "2023-09-01T01:43:29.348Z"
}