zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
On this page
  • Playground
  • Code examples
  • Full reference
  • Related APIs
Movie/IMDb
Logo IMDb

IMDb

Database film, serial TV & selebriti terbesar di dunia — rating, info lengkap, cast, ulasan, chart, dan box office.

Endpoints
12
Requests
32
Updated
last month
For LLMs
llms.txt
Endpoint health2 days ago
  • advanced-searchpassing, 3.4s
  • born-todaypassing, 1.0s
  • box-officepassing, 0.9s
  • chartpassing, 1.0s
  • coming-soonpassing, 1.0s
+ 7 more endpointsShow less
  • creditspassing, 0.9s
  • episodespassing, 0.9s
  • filmographypassing, 0.9s
  • namepassing, 0.9s
  • reviewspassing, 1.5s
  • searchpassing, 1.2s
  • titlepassing, 1.0s
12/12 passingdaily 01:00 WIB

Playground

12 endpoints
GET/v1/movie:imdb/advanced-search10m cache9 paramschecking key…
Parameters
qstring

Kata kunci judul (opsional)

genresstring

Genre dipisah koma. Cth: Action, Comedy, Drama, Horror, Sci-Fi, Thriller, Romance, Animation

typeenum

Filter tipe title (opsional)

year_fromnumber

Tahun rilis minimum (opsional)

year_tonumber

Tahun rilis maksimum (opsional)

rating_minnumber

Rating IMDb minimum 1-10 (opsional)

sortenum

Urutan hasil. Default popularity

pagenumber

Halaman (1,2,3…). Default 1, max 20

countnumber

Jumlah hasil per halaman. Default 25, max 50

·
Response
EXAMPLE
{
  "page": 1,
  "count": 3,
  "total": 3,
  "filters": {
    "q": "batman",
    "sort": "rating",
    "type": "movie",
    "genres": "Action,Sci-Fi",
    "yearTo": 2025,
    "yearFrom": 2000,
    "ratingMin": 7
  },
  "hasMore": false,
  "results": [
    {
      "id": "tt4116284",
      "plot": "A cooler-than-ever Bruce Wayne must deal with the usual suspects as they plan to rule Gotham City, while discovering that he has accidentally adopted a teenage orphan who wishes to become his sidekick.",
      "type": "Movie",
      "year": 2017,
      "image": "https://m.media-amazon.com/images/M/MV5BMTcyNTEyOTY0M15BMl5BanBnXkFtZTgwOTAyNzU3MDI@._V1_QL75_UX200_.jpg",
      "title": "The Lego Batman Movie",
      "rating": 7.3,
      "voteCount": 193968,
      "runtimeMinutes": 104
    },
    {
      "id": "tt14324650",
      "plot": "Held hostage by the powerful Falcone crime family, Gotham City is rife with crime and corruption. Adding to the chaos is the mysterious Holiday killer, who has been targeting the underworld and leaving a trail of terror - and body bags.",
      "type": "Movie",
      "year": 2021,
      "image": "https://m.media-amazon.com/images/M/MV5BNzQ2NTY5YmUtMjQ2Yi00NzhhLWI4OGItNTIxNTVkZGE0ZGIwXkEyXkFqcGc@._V1_QL75_UX200_.jpg",
      "title": "Batman: The Long Halloween, Part One",
      "rating": 7.3,
      "voteCount": 22848,
      "runtimeMinutes": 85
    },
    {
      "id": "tt14402926",
      "plot": "The killer known as Holiday continues to stalk the Falcone crime family while a new class of costumed criminal rises in Gotham City. Batman suspects that a former ally might be the serial killer.",
      "type": "Movie",
      "year": 2021,
      "image": "https://m.media-amazon.com/images/M/MV5BYWViZDQ4NGYtYjEwMi00YjFhLTg4NjQtNDlmNjY3YTJlZjIyXkEyXkFqcGc@._V1_QL75_UX200_.jpg",
      "title": "Batman: The Long Halloween, Part Two",
      "rating": 7.2,
      "voteCount": 19428,
      "runtimeMinutes": 87
    }
  ],
  "nextPage": null
}

Code examples

Advanced Search
zpi-sdkrecommended
// npm i zpi-sdk
import { ZpiClient } from "zpi-sdk";

const client = new ZpiClient({ apiKey: "zpi_xxxxxxxxxxxxxxxxxxxxxxxx" });

const data = await client.run("movie:imdb", "advanced-search", {
  "q": "batman",
  "genres": "Action,Sci-Fi",
  "type": "movie",
  "year_from": 2000,
  "year_to": 2025,
  "rating_min": 7,
  "sort": "rating",
  "page": 1,
  "count": 25
});
console.log(data);
Full SDK reference →
request.sh
curl -X GET "https://api.zpi.web.id/v1/movie:imdb/advanced-search?q=batman&genres=Action%2CSci-Fi&type=movie&year_from=2000&year_to=2025&rating_min=7&sort=rating&page=1&count=25" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Full reference

12 endpoints · plain text
GETAdvanced Search/v1/movie:imdb/advanced-searchIMDb Advanced Search — cari title dengan filter (genre, tipe, tahun, rating).

Parameters

qstringoptional
Kata kunci judul (opsional)
genresstringoptional
Genre dipisah koma. Cth: Action, Comedy, Drama, Horror, Sci-Fi, Thriller, Romance, Animation
typeenumoptional
Filter tipe title (opsional) Values: movie, tv, tv_mini, tv_movie, short, video_game.
year_fromnumberoptional
Tahun rilis minimum (opsional)
year_tonumberoptional
Tahun rilis maksimum (opsional)
rating_minnumberoptional
Rating IMDb minimum 1-10 (opsional)
sortenumoptional
Urutan hasil. Default popularity Values: popularity, rating, newest, oldest.
pagenumberoptional
Halaman (1,2,3…). Default 1, max 20
countnumberoptional
Jumlah hasil per halaman. Default 25, max 50

Request

curl -X GET "https://api.zpi.web.id/v1/movie:imdb/advanced-search?q=batman&genres=Action%2CSci-Fi&type=movie&year_from=2000&year_to=2025&rating_min=7&sort=rating&page=1&count=25" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "count": 3,
  "total": 3,
  "filters": {
    "q": "batman",
    "sort": "rating",
    "type": "movie",
    "genres": "Action,Sci-Fi",
    "yearTo": 2025,
    "yearFrom": 2000,
    "ratingMin": 7
  },
  "hasMore": false,
  "results": [
    {
      "id": "tt4116284",
      "plot": "A cooler-than-ever Bruce Wayne must deal with the usual suspects as they plan to rule Gotham City, while discovering that he has accidentally adopted a teenage orphan who wishes to become his sidekick.",
      "type": "Movie",
      "year": 2017,
      "image": "https://m.media-amazon.com/images/M/MV5BMTcyNTEyOTY0M15BMl5BanBnXkFtZTgwOTAyNzU3MDI@._V1_QL75_UX200_.jpg",
      "title": "The Lego Batman Movie",
      "rating": 7.3,
      "voteCount": 193968,
      "runtimeMinutes": 104
    },
    {
      "id": "tt14324650",
      "plot": "Held hostage by the powerful Falcone crime family, Gotham City is rife with crime and corruption. Adding to the chaos is the mysterious Holiday killer, who has been targeting the underworld and leaving a trail of terror - and body bags.",
      "type": "Movie",
      "year": 2021,
      "image": "https://m.media-amazon.com/images/M/MV5BNzQ2NTY5YmUtMjQ2Yi00NzhhLWI4OGItNTIxNTVkZGE0ZGIwXkEyXkFqcGc@._V1_QL75_UX200_.jpg",
      "title": "Batman: The Long Halloween, Part One",
      "rating": 7.3,
      "voteCount": 22848,
      "runtimeMinutes": 85
    },
    {
      "id": "tt14402926",
      "plot": "The killer known as Holiday continues to stalk the Falcone crime family while a new class of costumed criminal rises in Gotham City. Batman suspects that a former ally might be the serial killer.",
      "type": "Movie",
      "year": 2021,
      "image": "https://m.media-amazon.com/images/M/MV5BYWViZDQ4NGYtYjEwMi00YjFhLTg4NjQtNDlmNjY3YTJlZjIyXkEyXkFqcGc@._V1_QL75_UX200_.jpg",
      "title": "Batman: The Long Halloween, Part Two",
      "rating": 7.2,
      "voteCount": 19428,
      "runtimeMinutes": 87
    }
  ],
  "nextPage": null
}
GETBorn Today/v1/movie:imdb/born-todayIMDb Born Today — daftar selebriti yang lahir pada tanggal tertentu.

Parameters

monthnumberoptional
Bulan 1-12. Default bulan hari ini
daynumberoptional
Tanggal 1-31. Default tanggal hari ini
limitnumberoptional
Jumlah orang. Default 20, max 50

Request

curl -X GET "https://api.zpi.web.id/v1/movie:imdb/born-today?month=1&day=1&limit=20" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "date": "01-01",
  "count": 20,
  "people": [
    {
      "id": "nm3886028",
      "name": "Angourie Rice",
      "image": "https://m.media-amazon.com/images/M/MV5BMzMxNGM1YTItMGFiNi00NzdiLTg2NDctOTIzMzY2MDQ3ZDRkXkEyXkFqcGc@._V1_QL75_UX300_.jpg",
      "knownFor": "The Nice Guys",
      "birthYear": 2001,
      "professions": [
        "Actress",
        "Producer",
        "Soundtrack"
      ]
    },
    {
      "id": "nm0001449",
      "name": "Frank Langella",
      "image": "https://m.media-amazon.com/images/M/MV5BMTI5MDc0NTI3Nl5BMl5BanBnXkFtZTcwMTgzNjQzMg@@._V1_QL75_UX300_.jpg",
      "knownFor": "Frost/Nixon",
      "birthYear": 1938,
      "professions": [
        "Actor",
        "Producer",
        "Soundtrack"
      ]
    },
    {
      "id": "nm0004820",
      "name": "Morris Chestnut",
      "image": "https://m.media-amazon.com/images/M/MV5BNDYzNDQzMTkwMl5BMl5BanBnXkFtZTgwOTYwNDQyMDI@._V1_QL75_UX300_.jpg",
      "knownFor": "Kick-Ass 2",
      "birthYear": 1969,
      "professions": [
        "Actor",
        "Producer",
        "Director"
      ]
    }
  ]
}
GETBox Office/v1/movie:imdb/box-officeIMDb Box Office — chart pendapatan box office akhir pekan (weekend).

Parameters

limitnumberoptional
Jumlah judul teratas. Default 10, max 20

Request

curl -X GET "https://api.zpi.web.id/v1/movie:imdb/box-office?limit=10" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "count": 10,
  "items": [
    {
      "id": "tt26657236",
      "rank": 1,
      "year": 2026,
      "image": "https://m.media-amazon.com/images/M/MV5BYzQyYjZmMjctMzIyZi00MDI0LWJhNGQtMzQ3MTFlNDgwNGM5XkEyXkFqcGc@._V1_QL75_UX200_.jpg",
      "title": "Backrooms",
      "rating": 7.1,
      "weekendGross": {
        "amount": 81402424,
        "currency": "USD"
      },
      "lifetimeGross": {
        "amount": 154198791,
        "currency": "USD"
      }
    },
    {
      "id": "tt37287335",
      "rank": 2,
      "year": 2025,
      "image": "https://m.media-amazon.com/images/M/MV5BYzc1NWUwMDgtNGZlMS00ZmYzLWIzMzktNmMxMmY1MTUzNWExXkEyXkFqcGc@._V1_QL75_UX200_.jpg",
      "title": "Obsession",
      "rating": 8.1,
      "weekendGross": {
        "amount": 27395480,
        "currency": "USD"
      },
      "lifetimeGross": {
        "amount": 178778930,
        "currency": "USD"
      }
    },
    {
      "id": "tt30825738",
      "rank": 3,
      "year": 2026,
      "image": "https://m.media-amazon.com/images/M/MV5BYjRkYzAzNjktZmRhMy00NjRiLWE0OTMtYmRmMTE5NDkzY2NlXkEyXkFqcGc@._V1_QL75_UX200_.jpg",
      "title": "Star Wars: The Mandalorian and Grogu",
      "rating": 7,
      "weekendGross": {
        "amount": 24451576,
        "currency": "USD"
      },
      "lifetimeGross": {
        "amount": 257522349,
        "currency": "USD"
      }
    }
  ],
  "weekendEnd": "2026-05-31",
  "weekendStart": "2026-05-29"
}
GETChart/v1/movie:imdb/chartIMDb Charts — daftar peringkat resmi IMDb (Top 250, Most Popular, dll).

Parameters

chartenumoptional
Jenis chart. Default top_movies (IMDb Top 250 Movies) Values: top_movies, top_english_movies, top_tv, popular_movies, popular_tv, lowest_movies.
pagenumberoptional
Halaman (1,2,3…). Default 1, max 30
countnumberoptional
Jumlah item per halaman. Default 25, max 50

Request

curl -X GET "https://api.zpi.web.id/v1/movie:imdb/chart?chart=top_movies&page=1&count=25" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "chart": "top_movies",
  "count": 25,
  "items": [
    {
      "id": "tt0111161",
      "rank": 1,
      "type": "Movie",
      "year": 1994,
      "image": "https://m.media-amazon.com/images/M/MV5BMDAyY2FhYjctNDc5OS00MDNlLThiMGUtY2UxYWVkNGY2ZjljXkEyXkFqcGc@._V1_QL75_UX200_.jpg",
      "title": "The Shawshank Redemption",
      "rating": 9.3,
      "voteCount": 3194285,
      "runtimeMinutes": 142
    },
    {
      "id": "tt0068646",
      "rank": 2,
      "type": "Movie",
      "year": 1972,
      "image": "https://m.media-amazon.com/images/M/MV5BNGEwYjgwOGQtYjg5ZS00Njc1LTk2ZGEtM2QwZWQ2NjdhZTE5XkEyXkFqcGc@._V1_QL75_UX200_.jpg",
      "title": "The Godfather",
      "rating": 9.2,
      "voteCount": 2229395,
      "runtimeMinutes": 175
    },
    {
      "id": "tt0468569",
      "rank": 3,
      "type": "Movie",
      "year": 2008,
      "image": "https://m.media-amazon.com/images/M/MV5BMTMxNTMwODM0NF5BMl5BanBnXkFtZTcwODAyMTk2Mw@@._V1_QL75_UX200_.jpg",
      "title": "The Dark Knight",
      "rating": 9.1,
      "voteCount": 3175208,
      "runtimeMinutes": 152
    }
  ],
  "total": 250,
  "hasMore": true,
  "nextPage": 2
}
GETComing Soon/v1/movie:imdb/coming-soonIMDb Coming Soon — film/serial yang akan rilis (upcoming).

Parameters

typeenumoptional
Jenis: movie atau tv. Default movie Values: movie, tv.
regionstringoptional
Kode region 2 huruf (mis. US, ID, GB). Opsional
limitnumberoptional
Jumlah judul. Default 20, max 50

Request

curl -X GET "https://api.zpi.web.id/v1/movie:imdb/coming-soon?type=movie&region=US&limit=20" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "from": "2026-06-07",
  "type": "movie",
  "count": 20,
  "items": [
    {
      "id": "tt15047880",
      "cast": [
        "Emily Blunt",
        "Josh O'Connor",
        "Colin Firth"
      ],
      "plot": "If you found out we weren't alone, if someone showed you, proved it to you, would that frighten you?",
      "type": "Movie",
      "image": "https://m.media-amazon.com/images/M/MV5BMTgwNDI1ZjctYWNmMS00MTJhLTg1ZWItMzI1Yjk5NjZkYWFkXkEyXkFqcGc@._V1_QL75_UX300_.jpg",
      "title": "Disclosure Day",
      "genres": [
        "Drama",
        "Sci-Fi",
        "Thriller"
      ],
      "releaseDate": "2026-06-12"
    },
    {
      "id": "tt33764258",
      "cast": [
        "Anne Hathaway",
        "Josh Stewart",
        "Charlize Theron"
      ],
      "plot": "After the Trojan War, Odysseus faces a dangerous voyage back to Ithaca, meeting creatures like the Cyclops Polyphemus, Sirens, and Calypso along the way.",
      "type": "Movie",
      "image": "https://m.media-amazon.com/images/M/MV5BZDY2NTkxMWQtMmNkMC00NmNjLWIzMmItNmEyMmRmMDk2YmY2XkEyXkFqcGc@._V1_QL75_UX300_.jpg",
      "title": "The Odyssey",
      "genres": [
        "Adventure",
        "Drama",
        "Fantasy"
      ],
      "releaseDate": "2026-07-17"
    },
    {
      "id": "tt29355505",
      "cast": [
        "Tom Hanks",
        "Keanu Reeves",
        "Joan Cusack"
      ],
      "plot": "Woody, Buzz, Jessie and the rest of the gang's jobs are challenged when they're introduced to electronics, a new threat to playtime.",
      "type": "Movie",
      "image": "https://m.media-amazon.com/images/M/MV5BZTI1YTBiNmEtYWUxZi00YzFkLWIzNjMtMmZjMmY2NzM0ZWMzXkEyXkFqcGc@._V1_QL75_UX300_.jpg",
      "title": "Toy Story 5",
      "genres": [
        "Animation",
        "Adventure",
        "Comedy"
      ],
      "releaseDate": "2026-06-19"
    }
  ],
  "region": "US"
}
GETCredits/v1/movie:imdb/credits/:idIMDb Credits — daftar lengkap pemeran & kru sebuah title (paginated).

Parameters

idstringrequiredin path
IMDb title ID (tt…) atau URL title penuh
pagenumberoptional
Halaman (1,2,3…). Default 1, max 30
countnumberoptional
Jumlah kredit per halaman. Default 25, max 50

Request

curl -X GET "https://api.zpi.web.id/v1/movie:imdb/credits/tt1375666?page=1&count=25" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "id": "tt1375666",
  "page": 1,
  "count": 25,
  "title": "Inception",
  "total": 1603,
  "credits": [
    {
      "id": "nm0000138",
      "name": "Leonardo DiCaprio",
      "image": "https://m.media-amazon.com/images/M/MV5BMjI0MTg3MzI0M15BMl5BanBnXkFtZTcwMzQyODU2Mw@@._V1_QL75_UX200_.jpg",
      "category": "Actor",
      "characters": [
        "Cobb"
      ]
    },
    {
      "id": "nm0330687",
      "name": "Joseph Gordon-Levitt",
      "image": "https://m.media-amazon.com/images/M/MV5BMTY3NTk0NDI3Ml5BMl5BanBnXkFtZTgwNDA3NjY0MjE@._V1_QL75_UX200_.jpg",
      "category": "Actor",
      "characters": [
        "Arthur"
      ]
    },
    {
      "id": "nm0680983",
      "name": "Elliot Page",
      "image": "https://m.media-amazon.com/images/M/MV5BZmM3ZjE2M2QtYzljOC00ZTI4LWFhNTItOWVhNTkzM2JhOTE3XkEyXkFqcGc@._V1_QL75_UX200_.jpg",
      "category": "Actor",
      "characters": [
        "Ariadne"
      ]
    }
  ],
  "hasMore": true,
  "nextPage": 2
}
GETEpisodes/v1/movie:imdb/episodes/:idIMDb Episodes — daftar episode sebuah serial TV (opsional per-season, paginated).

Parameters

idstringrequiredin path
IMDb series ID (tt…, Breaking Bad) atau URL penuh
seasonstringoptional
Nomor season (mis. 1). Kosongkan untuk ambil semua episode lintas-season
pagenumberoptional
Halaman (1,2,3…). Default 1, max 30
countnumberoptional
Jumlah episode per halaman. Default 25, max 50

Request

curl -X GET "https://api.zpi.web.id/v1/movie:imdb/episodes/tt0903747?season=1&page=1&count=25" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "id": "tt0903747",
  "page": 1,
  "count": 7,
  "total": 7,
  "season": "1",
  "series": "Breaking Bad",
  "hasMore": false,
  "episodes": [
    {
      "id": "tt0959621",
      "plot": "Facing a life-altering diagnosis, chemistry teacher Walter White teams with former student Jesse Pinkman to cook meth, hoping to secure his family's future.",
      "image": "https://m.media-amazon.com/images/M/MV5BZGU1MDVlOWItMGVhNy00MmNlLWE1NjktMTM0M2UwMjAzZTQzXkEyXkFqcGc@._V1_QL75_UX300_.jpg",
      "title": "Pilot",
      "rating": 9,
      "season": "1",
      "episode": "1",
      "voteCount": 81558,
      "releaseDate": "2008-01-20"
    },
    {
      "id": "tt1054724",
      "plot": "Walt and Jesse face the messy fallout from their first cook, scrambling to erase evidence and deal with a dangerous loose end as Skyler grows uneasy over Walt's secretive behavior.",
      "image": "https://m.media-amazon.com/images/M/MV5BNTFlNzk3MTQtYTdjMC00NjIwLWI1ZDItZDQ1MTVjMTljMGRjXkEyXkFqcGc@._V1_QL75_UX300_.jpg",
      "title": "Cat's in the Bag...",
      "rating": 8.6,
      "season": "1",
      "episode": "2",
      "voteCount": 60689,
      "releaseDate": "2008-01-27"
    },
    {
      "id": "tt1054725",
      "plot": "With a dangerous captive in Jesse's basement, Walt faces a moral dilemma while scrambling to cover his tracks at home and keep their fledgling operation alive.",
      "image": "https://m.media-amazon.com/images/M/MV5BMzUwZGQzZmMtYzgyYS00ZWZjLWI5NzgtZTk4YzNiOGRjOGI3XkEyXkFqcGc@._V1_QL75_UX300_.jpg",
      "title": "...And the Bag's in the River",
      "rating": 8.7,
      "season": "1",
      "episode": "3",
      "voteCount": 58476,
      "releaseDate": "2008-02-10"
    }
  ],
  "nextPage": null
}
GETFilmography/v1/movie:imdb/filmography/:idIMDb Filmography — daftar kredit film/serial seorang aktor/kru (paginated).

Parameters

idstringrequiredin path
IMDb name ID (nm…) atau URL name penuh
pagenumberoptional
Halaman (1,2,3…). Default 1, max 30
countnumberoptional
Jumlah kredit per halaman. Default 25, max 50

Request

curl -X GET "https://api.zpi.web.id/v1/movie:imdb/filmography/nm0000138?page=1&count=25" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "id": "nm0000138",
  "name": "Leonardo DiCaprio",
  "page": 1,
  "count": 25,
  "total": 608,
  "credits": [
    {
      "id": "tt38985296",
      "type": "Movie",
      "year": 2026,
      "image": "https://m.media-amazon.com/images/M/MV5BZmEwNzU4MWEtZGMzMy00NzA0LWIzYWItN2E1ODQ0MmZhYzA0XkEyXkFqcGc@._V1_QL75_UX200_.jpg",
      "title": "Oz",
      "category": "Producer"
    },
    {
      "id": "tt29028861",
      "type": "Movie",
      "year": 2026,
      "image": "https://m.media-amazon.com/images/M/MV5BYjUzM2FhZDQtNDBmZC00ZTU2LWE3YjUtNGU4NjAzOTRkYzllXkEyXkFqcGc@._V1_QL75_UX200_.jpg",
      "title": "Michael Caton-Jones: This Broxburn Boy's Life",
      "category": "Archive Footage",
      "characters": [
        "Self"
      ]
    },
    {
      "id": "tt39796043",
      "type": "Movie",
      "year": 2026,
      "image": "https://m.media-amazon.com/images/M/MV5BMTJjMTY0ZGUtZDJmYS00YTM1LTk1YTEtODE2YzVmZTM3ZmU3XkEyXkFqcGc@._V1_QL75_UX200_.jpg",
      "title": "Death Boom",
      "category": "Producer"
    }
  ],
  "hasMore": true,
  "nextPage": 2
}
GETName/v1/movie:imdb/name/:idIMDb Name (Person) Detail — info aktor/sutradara/kru by IMDb ID (nm…).

Parameters

idstringrequiredin path
IMDb name ID (diawali nm). Boleh tempel URL IMDb penuh — ID di-ekstrak otomatis

Request

curl -X GET "https://api.zpi.web.id/v1/movie:imdb/name/nm0000138" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "id": "nm0000138",
  "bio": "Few actors in the world have had a career quite as diverse as Leonardo DiCaprio's. DiCaprio has gone from relatively humble beginnings, as a supporting cast member of the sitcom Gr…",
  "url": "https://www.imdb.com/name/nm0000138/",
  "name": "Leonardo DiCaprio",
  "photo": "https://m.media-amazon.com/images/M/MV5BMjI0MTg3MzI0M15BMl5BanBnXkFtZTcwMzQyODU2Mw@@._V1_QL75_UX600_.jpg",
  "knownFor": [
    {
      "id": "tt1375666",
      "year": 2010,
      "image": "https://m.media-amazon.com/images/M/MV5BMjAxMzY3NjcxNF5BMl5BanBnXkFtZTcwNTI5OTM0Mw@@._V1_QL75_UX200_.jpg",
      "title": "Inception",
      "rating": 8.8
    },
    {
      "id": "tt0407887",
      "year": 2006,
      "image": "https://m.media-amazon.com/images/M/MV5BMTI1MTY2OTIxNV5BMl5BanBnXkFtZTYwNjQ4NjY3._V1_QL75_UX200_.jpg",
      "title": "The Departed",
      "rating": 8.5
    },
    {
      "id": "tt0993846",
      "year": 2013,
      "image": "https://m.media-amazon.com/images/M/MV5BMjIxMjgxNTk0MF5BMl5BanBnXkFtZTgwNjIyOTg2MDE@._V1_QL75_UX200_.jpg",
      "title": "The Wolf of Wall Street",
      "rating": 8.2
    }
  ],
  "birthDate": "1974-11-11",
  "birthPlace": "Hollywood, Los Angeles, California, USA",
  "alsoKnownAs": [
    "Leonardo Di Caprio",
    "Leo DiCaprio"
  ],
  "professions": [
    "Producer",
    "Actor",
    "Writer"
  ],
  "photoOriginal": "https://m.media-amazon.com/images/M/MV5BMjI0MTg3MzI0M15BMl5BanBnXkFtZTcwMzQyODU2Mw@@._V1_.jpg",
  "popularityRank": 91
}
GETReviews/v1/movie:imdb/reviews/:idIMDb Reviews — ulasan pengguna untuk sebuah title (paginated + sortable).

Parameters

idstringrequiredin path
IMDb title ID (tt…) atau URL title penuh
sortenumoptional
Urutan: helpfulness, date (terbaru), rating, votes. Default helpfulness Values: helpfulness, date, rating, votes.
pagenumberoptional
Halaman (1,2,3…). Default 1, max 20
countnumberoptional
Jumlah ulasan per halaman. Default 10, max 25

Request

curl -X GET "https://api.zpi.web.id/v1/movie:imdb/reviews/tt1375666?sort=helpfulness&page=1&count=10" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "id": "tt1375666",
  "page": 1,
  "sort": "helpfulness",
  "count": 10,
  "title": "Inception",
  "total": 5174,
  "hasMore": true,
  "reviews": [
    {
      "id": "rw10607352",
      "date": "2025-07-01",
      "title": "The one that stays with you long after the movie ended.",
      "author": "Didako1221",
      "rating": 10,
      "review": "Few films leave you genuinely questioning whether you truly understood them quite like Inception does. The cast is outstanding, the story itself feels like a puzzle you can't stop …",
      "upVotes": 143,
      "downVotes": 8
    },
    {
      "id": "rw4692192",
      "date": "2019-03-01",
      "title": "A one-of-a-kind mind-blowing masterpiece!",
      "author": "adrien_ngoc_1701",
      "rating": 10,
      "review": "My 3rd time watching this movie! Yet, it still stunned my mind, kept me enjoyed its every moment and left me with many thoughts afterward.\n\nFor someone like me, who've rarely slept…",
      "spoiler": true,
      "upVotes": 600,
      "downVotes": 85
    },
    {
      "id": "rw2299419",
      "date": "2010-08-22",
      "title": "Matrix but in dreamworld? Nah.",
      "author": "clipturnity",
      "rating": 9,
      "review": "I'd like to keep my review rather to the point.\n\nPros: 1. its theme - dream is a fascinating topic to say the least. There are a lot of unknowns in dreamworld. \n\n2. its plot - ther…",
      "spoiler": true,
      "upVotes": 1874,
      "downVotes": 330
    }
  ],
  "nextPage": 2
}
GETSearch/v1/movie:imdb/searchIMDb Search — autocomplete/suggestion lintas-tipe (judul, orang, perusahaan).

Parameters

qstringrequired
Kata kunci pencarian: judul film/serial, nama aktor/kru, atau perusahaan
typeenumoptional
Filter jenis hasil: all=semua, title=film/serial, name=orang, company=perusahaan. Default all Values: all, title, name, company.
limitnumberoptional
Jumlah hasil maksimum. Default 12, max 20

Request

curl -X GET "https://api.zpi.web.id/v1/movie:imdb/search?q=inception&type=all&limit=12" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "type": "all",
  "count": 8,
  "query": "inception",
  "results": [
    {
      "id": "tt1375666",
      "kind": "title",
      "type": "feature",
      "year": 2010,
      "image": "https://m.media-amazon.com/images/M/MV5BMjAxMzY3NjcxNF5BMl5BanBnXkFtZTcwNTI5OTM0Mw@@._V1_QL75_UX300_.jpg",
      "title": "Inception",
      "typeId": "movie",
      "subtitle": "Leonardo DiCaprio, Joseph Gordon-Levitt",
      "videoCount": 35,
      "popularityRank": 199
    },
    {
      "id": "tt1790736",
      "kind": "title",
      "type": "video",
      "year": 2010,
      "image": "https://m.media-amazon.com/images/M/MV5BNjYxOGIzZDItN2I2NC00ZjE2LTllYmEtMWMxODUwOGU5NGI1XkEyXkFqcGc@._V1_QL75_UX300_.jpg",
      "title": "Inception: The Cobol Job",
      "typeId": "video",
      "popularityRank": 26328
    },
    {
      "id": "tt7321322",
      "kind": "title",
      "type": "short",
      "year": 2014,
      "image": "https://m.media-amazon.com/images/M/MV5BOTY3OGFlNTktYTJiZi00ZWMxLTk4MjQtNmJiODkxYThiNjg4XkEyXkFqcGc@._V1_QL75_UX300_.jpg",
      "title": "Inception",
      "typeId": "short",
      "subtitle": "Erfan Refahatnia, Danial Hajibarat",
      "popularityRank": 118101
    }
  ]
}
GETTitle/v1/movie:imdb/title/:idIMDb Title Detail — info lengkap satu film / serial / episode by IMDb ID.

Parameters

idstringrequiredin path
IMDb title ID (diawali tt). Boleh tempel URL IMDb penuh — ID di-ekstrak otomatis

Request

curl -X GET "https://api.zpi.web.id/v1/movie:imdb/title/tt1375666" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "id": "tt1375666",
  "url": "https://www.imdb.com/title/tt1375666/",
  "plot": "A thief who steals corporate secrets through the use of dream-sharing technology is given the inverse task of planting an idea into the mind of a CEO, but his tragic past may doom …",
  "type": "Movie",
  "year": 2010,
  "stars": [
    {
      "id": "nm0000138",
      "name": "Leonardo DiCaprio"
    },
    {
      "id": "nm0330687",
      "name": "Joseph Gordon-Levitt"
    },
    {
      "id": "nm0680983",
      "name": "Elliot Page"
    }
  ],
  "title": "Inception",
  "budget": {
    "amount": 160000000,
    "currency": "USD"
  },
  "genres": [
    "Adventure",
    "Sci-Fi",
    "Thriller"
  ],
  "poster": "https://m.media-amazon.com/images/M/MV5BMjAxMzY3NjcxNF5BMl5BanBnXkFtZTcwNTI5OTM0Mw@@._V1_QL75_UX800_.jpg",
  "rating": 8.8,
  "typeId": "movie",
  "tagline": "Your mind is the scene of the crime.",
  "writers": [
    {
      "id": "nm0634240",
      "name": "Christopher Nolan"
    }
  ],
  "isSeries": false,
  "keywords": [
    "dream",
    "ambiguous ending",
    "subconscious"
  ],
  "countries": [
    "United Kingdom",
    "United States"
  ],
  "directors": [
    {
      "id": "nm0634240",
      "name": "Christopher Nolan"
    }
  ],
  "isEpisode": false,
  "languages": [
    "English",
    "Japanese",
    "French"
  ],
  "voteCount": 2823283,
  "alsoKnownAs": [
    {
      "title": "Inception",
      "country": "United Arab Emirates"
    },
    {
      "title": "Inception",
      "country": "Australia"
    },
    {
      "title": "Inception",
      "country": "Belgium"
    }
  ],
  "certificate": "PG-13",
  "releaseDate": "2010-07-16",
  "keywordCount": 457,
  "originalTitle": "Inception",
  "grossWorldwide": {
    "amount": 839796627,
    "currency": "USD"
  },
  "popularityRank": 87,
  "posterOriginal": "https://m.media-amazon.com/images/M/MV5BMjAxMzY3NjcxNF5BMl5BanBnXkFtZTcwNTI5OTM0Mw@@._V1_.jpg",
  "runtimeMinutes": 148,
  "productionStatus": "Released"
}

Related APIs

More in movie

MyAnimeList

movie/myanimelist

Database anime & manga MyAnimeList: pencarian, detail, karakter, top, dan anime musiman.

43 calls·6h cache

TVmaze

movie/tvmaze

API serial TV: pencarian acara & orang, detail show, episode, cast, dan jadwal tayang.

7 calls·6h cache

AniList

movie/anilist

Database anime & manga: pencarian, detail lengkap, karakter, staff, trending, dan anime musiman.

8 calls·6h cache

Letterboxd

movie/letterboxd

Jejaring sosial film: detail film, rating komunitas, film populer, dan profil member.

7 calls·1h cache

Metacritic

movie/metacritic

Skor kritikus & pengguna (Metascore) untuk film, serial TV, dan game.

5 calls·30m cache

Rotten Tomatoes

movie/rotten-tomatoes

Tomatometer & skor audiens untuk film dan serial TV, plus ulasan kritikus.

4 calls·30m cache
Browse APIsPricingDocsMCP serverGet an API key
zapi.One key, one response shape.
TermsPrivacyCookiesAUPRefunds© 2026