Umbra bestia
Director: Sherri Adams-Boehm
2010 · 238 min
animationmusical
★ 1.6 (1631774)
Villa aperte stillicidium. Dapifer hic credo decimus. Verecundia volva defluo distinctio sufficio capitulus vado voco tenax.
Overview
movies / #109
Director: Sherri Adams-Boehm
2010 · 238 min
★ 1.6 (1631774)
Villa aperte stillicidium. Dapifer hic credo decimus. Verecundia volva defluo distinctio sufficio capitulus vado voco tenax.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/movies/109" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/movies/109" ); const movy = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/movies.d.ts https://example-data.com/types/movies.d.ts
import type { Movy } from "./types/movies";
const res = await fetch(
"https://example-data.com/api/v1/movies/109"
);
const movy = (await res.json()) as Movy; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/movies/109"
)
movie = res.json() Response
{
"id": 109,
"title": "Umbra bestia",
"slug": "umbra-bestia-109",
"year": 2010,
"runtimeMinutes": 238,
"director": "Sherri Adams-Boehm",
"cast": [
"Carla D'Amore",
"Dr. Blake Wintheiser",
"Melba Fadel",
"Mattie Klocko",
"Javier McKenzie"
],
"genres": [
"animation",
"musical"
],
"language": "Korean",
"plot": "Villa aperte stillicidium. Dapifer hic credo decimus. Verecundia volva defluo distinctio sufficio capitulus vado voco tenax.",
"posterUrl": "https://picsum.photos/seed/movie-109/400/600",
"rating": 1.6,
"ratingCount": 1631774,
"createdAt": "2025-02-22T08:42:01.727Z"
}