example-data.com
Menu
Browse docs and collections

Overview

movies / #27

Contabesco modi paulatim vos culpo

Contabesco modi paulatim vos culpo

Director: Dr. Kevin Hoppe

2024 · 138 min

thrillercrimescience-fiction

★ 5.5 (1140784)

Sapiente villa subnecto usque. Ater antiquus patria verbum paulatim maxime tredecim comburo aveho nesciunt.

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 27,
  "title": "Contabesco modi paulatim vos culpo",
  "slug": "contabesco-modi-paulatim-vos-culpo-27",
  "year": 2024,
  "runtimeMinutes": 138,
  "director": "Dr. Kevin Hoppe",
  "cast": [
    "Doug Ondricka DDS",
    "Curtis Wilderman",
    "Ida Haag-Leffler",
    "Grant Murphy"
  ],
  "genres": [
    "thriller",
    "crime",
    "science-fiction"
  ],
  "language": "English",
  "plot": "Sapiente villa subnecto usque. Ater antiquus patria verbum paulatim maxime tredecim comburo aveho nesciunt.",
  "posterUrl": "https://picsum.photos/seed/movie-27/400/600",
  "rating": 5.5,
  "ratingCount": 1140784,
  "createdAt": "2023-08-30T02:51:25.003Z"
}