example-data.com
Menu
Browse docs and collections

Overview

movies / #159

Vester aestus assentator

Vester aestus assentator

Director: Stephanie Senger

2015 · 91 min

mystery

★ 5.3 (1705697)

Adfero eos adipiscor virgo adaugeo. Paulatim derelinquo defaeco minus conicio auctor caute. Unde audio deserunt thermae. Vel harum bellicus.

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 159,
  "title": "Vester aestus assentator",
  "slug": "vester-aestus-assentator-159",
  "year": 2015,
  "runtimeMinutes": 91,
  "director": "Stephanie Senger",
  "cast": [
    "Marvin Lockman",
    "Clark O'Reilly",
    "Heidi Boyle",
    "Amanda Klein"
  ],
  "genres": [
    "mystery"
  ],
  "language": "English",
  "plot": "Adfero eos adipiscor virgo adaugeo. Paulatim derelinquo defaeco minus conicio auctor caute. Unde audio deserunt thermae. Vel harum bellicus.",
  "posterUrl": "https://picsum.photos/seed/movie-159/400/600",
  "rating": 5.3,
  "ratingCount": 1705697,
  "createdAt": "2024-05-22T15:57:14.913Z"
}