Surgo synagoga usus
2016
realitycrime
★ 2.7 (348269)
Overview
tv-shows / #6
2016
★ 2.7 (348269)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/6" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/6" ); 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/6"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/6"
)
tv_show = res.json() Response
{
"id": 6,
"title": "Surgo synagoga usus",
"slug": "surgo-synagoga-usus-6",
"firstAired": "2016-03-10",
"lastAired": null,
"seasonCount": 9,
"episodeCount": 12,
"genres": [
"reality",
"crime"
],
"language": "Japanese",
"posterUrl": "https://picsum.photos/seed/tvshow-6/400/600",
"rating": 2.7,
"ratingCount": 348269,
"status": "running",
"createdAt": "2023-08-25T15:08:29.758Z"
}