example-data.com
Menu
Browse docs and collections

Overview

movies / #61

Vilicus denuncio

Vilicus denuncio

Director: Willie McKenzie

2018 · 226 min

crime

★ 6.5 (1943802)

Texo magni nam decerno blandior via caveo. Vobis comitatus solum.

Component variants

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/movies/61" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/movies/61"
);
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/61"
);
const movy = (await res.json()) as Movy;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/movies/61"
)
movie = res.json()

Response

{
  "id": 61,
  "title": "Vilicus denuncio",
  "slug": "vilicus-denuncio-61",
  "year": 2018,
  "runtimeMinutes": 226,
  "director": "Willie McKenzie",
  "cast": [
    "Mrs. Olga Balistreri",
    "Georgia Goyette",
    "Gabriel Durgan",
    "Pat Yost II",
    "Shane Bednar"
  ],
  "genres": [
    "crime"
  ],
  "language": "Italian",
  "plot": "Texo magni nam decerno blandior via caveo. Vobis comitatus solum.",
  "posterUrl": "https://picsum.photos/seed/movie-61/400/600",
  "rating": 6.5,
  "ratingCount": 1943802,
  "createdAt": "2025-09-04T02:17:18.889Z"
}