example-data.com
Menu
Browse docs and collections

Overview

movies / #161

Ater ager amita decretum

Ater ager amita decretum

Director: Walter Rau

2016 · 99 min

thriller

★ 7.3 (721257)

Aequus tero aureus abundans perspiciatis viriliter voluntarius dolores aestivus facilis. Sub arbustum appello catena argentum.

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 161,
  "title": "Ater ager amita decretum",
  "slug": "ater-ager-amita-decretum-161",
  "year": 2016,
  "runtimeMinutes": 99,
  "director": "Walter Rau",
  "cast": [
    "Charles Jerde",
    "Elsa Cruickshank",
    "Benny Klocko",
    "Eric Kautzer",
    "Krystal Bahringer"
  ],
  "genres": [
    "thriller"
  ],
  "language": "German",
  "plot": "Aequus tero aureus abundans perspiciatis viriliter voluntarius dolores aestivus facilis. Sub arbustum appello catena argentum.",
  "posterUrl": "https://picsum.photos/seed/movie-161/400/600",
  "rating": 7.3,
  "ratingCount": 721257,
  "createdAt": "2025-11-28T06:22:38.093Z"
}