example-data.com
Menu
Browse docs and collections

Overview

movies / #134

Tenax creator

Tenax creator

Director: Rose Fay

1977 · 124 min

horroranimationdrama

★ 5.2 (833658)

Aperio adfero spoliatio pecto velut sequi accusantium id. Blandior comparo sodalitas cotidie vomer comedo ex centum tempora.

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 134,
  "title": "Tenax creator",
  "slug": "tenax-creator-134",
  "year": 1977,
  "runtimeMinutes": 124,
  "director": "Rose Fay",
  "cast": [
    "Rosemary Harber",
    "Erika Kautzer",
    "Dr. Maureen Cole",
    "Traci Streich",
    "Patti Lang",
    "Wendell Leuschke",
    "Ruby Kerluke"
  ],
  "genres": [
    "horror",
    "animation",
    "drama"
  ],
  "language": "Italian",
  "plot": "Aperio adfero spoliatio pecto velut sequi accusantium id. Blandior comparo sodalitas cotidie vomer comedo ex centum tempora.",
  "posterUrl": "https://picsum.photos/seed/movie-134/400/600",
  "rating": 5.2,
  "ratingCount": 833658,
  "createdAt": "2024-05-29T00:31:07.879Z"
}