Movie tracker
Letterboxd-style media library — track movies + TV shows you've watched, rate them, write reactions. Comes with 500+ films and 200+ shows.
Build a media tracker in Draftbit →Showcase / Movie tracker
Letterboxd-style media library — track movies + TV shows you've watched, rate them, write reactions. Comes with 500+ films and 200+ shows.
Build a media tracker in Draftbit →Click into any collection to see its schema, sample records, and API reference.
Fetch movies in the language of your choice.
curl -sS \
"https://example-data.com/api/v1/movies?limit=25"const res = await fetch(
"https://example-data.com/api/v1/movies?limit=25"
);
const { data, meta } = await res.json();import type { Movie, ListEnvelope } from "https://example-data.com/types/movies.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/movies?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Movie>;import requests
res = requests.get(
"https://example-data.com/api/v1/movies",
params={"limit": 25},
)
data = res.json()