example-data.com

movies / #17

Volubilis subiungo adversus

Volubilis subiungo adversus

Director: Madeline Douglas

1976 · 134 min

comedyanimation

★ 4.5 (972568)

Veritas bestia causa ex. Clementia sunt peccatus. Suppono solvo tersus.

Component variants

curl -sS \
  "https://example-data.com/api/v1/movies/17" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/movies/17"
);
const movie = await res.json();
import type { Movie } from "https://example-data.com/types/movies.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/movies/17"
);
const movie = (await res.json()) as Movie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/movies/17"
)
movie = res.json()
{
  "id": 17,
  "title": "Volubilis subiungo adversus",
  "slug": "volubilis-subiungo-adversus-17",
  "year": 1976,
  "runtimeMinutes": 134,
  "director": "Madeline Douglas",
  "cast": [
    "Bob Mueller",
    "Dr. Moses Lind",
    "Ellis Witting",
    "Arlene Stehr",
    "Manuel Denesik",
    "Ms. Delia McDermott",
    "Samantha Jast",
    "Ken Mosciski"
  ],
  "genres": [
    "comedy",
    "animation"
  ],
  "language": "Hindi",
  "plot": "Veritas bestia causa ex. Clementia sunt peccatus. Suppono solvo tersus.",
  "posterUrl": "https://picsum.photos/seed/movie-17/400/600",
  "rating": 4.5,
  "ratingCount": 972568,
  "createdAt": "2024-02-19T21:44:21.243Z"
}
Draftbit