Vindico corpus
Director: Bethany Schuppe
2019 · 140 min
musicaladventure
★ 6.9 (1276124)
Video amo damnatio vero. Defero nesciunt vulticulus.
Overview
movies / #31
Director: Bethany Schuppe
2019 · 140 min
★ 6.9 (1276124)
Video amo damnatio vero. Defero nesciunt vulticulus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/movies/31" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/movies/31" ); 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/31"
);
const movy = (await res.json()) as Movy; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/movies/31"
)
movie = res.json() Response
{
"id": 31,
"title": "Vindico corpus",
"slug": "vindico-corpus-31",
"year": 2019,
"runtimeMinutes": 140,
"director": "Bethany Schuppe",
"cast": [
"Kim Morar",
"Perry Lakin DVM",
"Gabriel Bartell",
"Pamela Kohler",
"Mr. Rafael Boyer-Kautzer",
"Kristie Jacobi",
"Eloise Ratke",
"Leroy Haley"
],
"genres": [
"musical",
"adventure"
],
"language": "Japanese",
"plot": "Video amo damnatio vero. Defero nesciunt vulticulus.",
"posterUrl": "https://picsum.photos/seed/movie-31/400/600",
"rating": 6.9,
"ratingCount": 1276124,
"createdAt": "2025-08-02T05:01:12.618Z"
}