Coaegresco ancilla terebro confero
2018
adventuremystery
★ 8.6 (492051)
tv-shows / #1
2018
★ 8.6 (492051)
curl -sS \
"https://example-data.com/api/v1/tv-shows/1" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/1"
);
const tvShow = await res.json();import type { TvShow } from "https://example-data.com/types/tv-shows.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/tv-shows/1"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/1"
)
tv_show = res.json() {
"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"
}