example-data.com
Menu
Browse docs and collections

movies

movies

Page 7 of 9.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/movies?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/movies?limit=25"
);
const { data, meta } = 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, ListEnvelope } from "./types/movies";

const res = await fetch(
  "https://example-data.com/api/v1/movies?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Movy>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/movies",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 145,
      "title": "Nesciunt conventus iste confero defungo",
      "slug": "nesciunt-conventus-iste-confero-defungo-145",
      "year": 2019,
      "runtimeMinutes": 106,
      "director": "Dr. Josefina Baumbach",
      "cast": [
        "Roberto Jaskolski",
        "Melissa Lowe",
        "Doreen Breitenberg",
        "Penny Wiza-Howe"
      ],
      "genres": [
        "animation",
        "drama",
        "action"
      ],
      "language": "German",
      "plot": "Complectus torrens ademptio ago defero. Audentia theologus ustilo patrocinor illo cavus comptus bene curvo alter. Urbanus conspergo itaque vergo debitis amet vitiosus porro. Cibus agnitio sed tam vinitor curto assumenda.",
      "posterUrl": "https://picsum.photos/seed/movie-145/400/600",
      "rating": 5,
      "ratingCount": 20898,
      "createdAt": "2026-02-25T17:37:11.417Z"
    },
    {
      "id": 146,
      "title": "Asper surgo",
      "slug": "asper-surgo-146",
      "year": 1977,
      "runtimeMinutes": 158,
      "director": "Christopher Morar",
      "cast": [
        "Malcolm Towne",
        "Nick Ledner",
        "Kenny Considine"
      ],
      "genres": [
        "horror"
      ],
      "language": "Mandarin",
      "plot": "Articulus thalassinus abbas talio aegre validus correptius laudantium. Inventore contra incidunt currus. Titulus cunae tubineus spiculum cometes. Adicio usitas tandem aegre contego cruentus tener cumque.",
      "posterUrl": "https://picsum.photos/seed/movie-146/400/600",
      "rating": 0.9,
      "ratingCount": 1665096,
      "createdAt": "2025-12-12T04:05:01.713Z"
    },
    {
      "id": 147,
      "title": "Aeger tolero",
      "slug": "aeger-tolero-147",
      "year": 1982,
      "runtimeMinutes": 128,
      "director": "Steve White",
      "cast": [
        "Blanche Kub",
        "Mr. Roman Kutch",
        "Carlos Hilll"
      ],
      "genres": [
        "western",
        "adventure",
        "horror"
      ],
      "language": "English",
      "plot": "Nemo conservo adversus ager pauper suus templum defero maiores conor. Quam creator baiulus utilis aspernatur dolores cilicium cunae voluntarius ut.",
      "posterUrl": "https://picsum.photos/seed/movie-147/400/600",
      "rating": 7.4,
      "ratingCount": 1544224,
      "createdAt": "2026-04-23T04:38:50.425Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/movies?page=7&limit=24",
    "first": "/api/v1/movies?page=1&limit=24",
    "last": "/api/v1/movies?page=9&limit=24",
    "next": "/api/v1/movies?page=8&limit=24",
    "prev": "/api/v1/movies?page=6&limit=24"
  }
}