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

IMDb Autocomplete

IMDb title and name autocomplete — returns records with ids, years, posters and cast, not just query strings.

Endpoints
2
Requests
113
Updated
2 months ago
For LLMs
llms.txt
Endpoint health19 hours ago
  • autocompletepassing, 1.3s
  • expandpassing, 11.5s
2/2 passingdaily 01:00 WIB

Playground

2 endpoints
GET/v1/autocomplete:imdb-autocomplete/autocomplete10m cache2 paramschecking key…
Parameters
qstringrequired

Title or name to complete

countnumber

Cap the list. Default: everything the upstream returns

·
Response
EXAMPLE
{
  "count": 8,
  "items": [
    {
      "id": "tt43408259",
      "url": "https://www.imdb.com/title/tt43408259/",
      "cast": "Keiko Ananta, La Rheina Isabelle Bishop",
      "rank": 248370,
      "text": "Kucing Hitam",
      "type": "movie",
      "year": 2026
    },
    {
      "id": "tt7144986",
      "url": "https://www.imdb.com/title/tt7144986/",
      "cast": "Masayu Anastasia, Adi Nugroho",
      "rank": 940051,
      "text": "12:06 Rumah Kucing",
      "type": "movie",
      "year": 2017,
      "image": "https://m.media-amazon.com/images/M/MV5BNGEwY2NkOTgtMjEyMi00ZTQ2LWJkNWQtNjk5NTUxNjJjY2I0XkEyXkFqcGc@._V1_.jpg"
    },
    {
      "id": "tt9277738",
      "url": "https://www.imdb.com/title/tt9277738/",
      "cast": "Aline Adita, Natalius Chendana",
      "rank": 1357627,
      "text": "Rawa Kucing",
      "type": "short",
      "year": 2013,
      "image": "https://m.media-amazon.com/images/M/MV5BNGI4ZTMwNjUtN2ZjMC00M2Q4LWJiMzEtN2Q0ZTcxNDJmMGJhXkEyXkFqcGc@._V1_.jpg"
    },
    {
      "id": "tt13469414",
      "url": "https://www.imdb.com/title/tt13469414/",
      "cast": "Harith Haziq, Rayyan Dino",
      "rank": 1619194,
      "text": "Kucing Air",
      "type": "short",
      "year": 2019,
      "image": "https://m.media-amazon.com/images/M/MV5BYWFlNjJhZTUtMjRiMC00N2ZkLWIwMmUtYzY2ZTliZDFiYTE5XkEyXkFqcGc@._V1_.jpg"
    },
    {
      "id": "tt9699148",
      "url": "https://www.imdb.com/title/tt9699148/",
      "cast": "Judith Cabral, Sarah Natochenny",
      "rank": 85775,
      "text": "44 Cats",
      "type": "tvSeries",
      "year": 2018,
      "image": "https://m.media-amazon.com/images/M/MV5BOTM0ODFhNjktMzZkYS00ZmNiLTlmYzYtM2UxMzQwOGU2YWYwXkEyXkFqcGc@._V1_.jpg"
    },
    {
      "id": "tt32378496",
      "url": "https://www.imdb.com/title/tt32378496/",
      "cast": "Ana Tasya Lalita, Muhammad Redho",
      "rank": 2262933,
      "text": "Kucing Zel Zel",
      "type": "tvMiniSeries",
      "year": 2021,
      "image": "https://m.media-amazon.com/images/M/MV5BY2NkMTYyMDgtNTJkZC00MjUxLTk3OGQtNGYxOWI1ZjliMzE3XkEyXkFqcGc@._V1_.jpg"
    },
    {
      "id": "tt35670577",
      "url": "https://www.imdb.com/title/tt35670577/",
      "cast": "Kate Mara, Rooney Mara",
      "rank": 1699,
      "text": "Bucking Fastard",
      "type": "movie",
      "year": 2026,
      "image": "https://m.media-amazon.com/images/M/MV5BZjcxMzc5ZjctODg1NS00N2JkLTg5NDgtMDgwNmUzZTg5OGQxXkEyXkFqcGc@._V1_.jpg"
    },
    {
      "id": "tt10681410",
      "url": "https://www.imdb.com/title/tt10681410/",
      "rank": 2655882,
      "text": "Kucing Menangis",
      "type": "tvSeries",
      "year": 2018
    }
  ],
  "query": "kucing",
  "provider": "imdb"
}

Code examples

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

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

const data = await client.run("autocomplete:imdb-autocomplete", "autocomplete", {
  "q": "kucing",
  "count": 10
});
console.log(data);
Full SDK reference →
request.sh
curl -X GET "https://api.zpi.web.id/v1/autocomplete:imdb-autocomplete/autocomplete?q=kucing&count=10" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Full reference

2 endpoints · plain text
GETAutocomplete/v1/autocomplete:imdb-autocomplete/autocompleteTitles and names matching a seed.

Parameters

qstringrequired
Title or name to complete
countnumberoptional
Cap the list. Default: everything the upstream returns

Request

curl -X GET "https://api.zpi.web.id/v1/autocomplete:imdb-autocomplete/autocomplete?q=kucing&count=10" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "count": 8,
  "items": [
    {
      "id": "tt43408259",
      "url": "https://www.imdb.com/title/tt43408259/",
      "cast": "Keiko Ananta, La Rheina Isabelle Bishop",
      "rank": 248370,
      "text": "Kucing Hitam",
      "type": "movie",
      "year": 2026
    },
    {
      "id": "tt7144986",
      "url": "https://www.imdb.com/title/tt7144986/",
      "cast": "Masayu Anastasia, Adi Nugroho",
      "rank": 940051,
      "text": "12:06 Rumah Kucing",
      "type": "movie",
      "year": 2017,
      "image": "https://m.media-amazon.com/images/M/MV5BNGEwY2NkOTgtMjEyMi00ZTQ2LWJkNWQtNjk5NTUxNjJjY2I0XkEyXkFqcGc@._V1_.jpg"
    },
    {
      "id": "tt9277738",
      "url": "https://www.imdb.com/title/tt9277738/",
      "cast": "Aline Adita, Natalius Chendana",
      "rank": 1357627,
      "text": "Rawa Kucing",
      "type": "short",
      "year": 2013,
      "image": "https://m.media-amazon.com/images/M/MV5BNGI4ZTMwNjUtN2ZjMC00M2Q4LWJiMzEtN2Q0ZTcxNDJmMGJhXkEyXkFqcGc@._V1_.jpg"
    },
    {
      "id": "tt13469414",
      "url": "https://www.imdb.com/title/tt13469414/",
      "cast": "Harith Haziq, Rayyan Dino",
      "rank": 1619194,
      "text": "Kucing Air",
      "type": "short",
      "year": 2019,
      "image": "https://m.media-amazon.com/images/M/MV5BYWFlNjJhZTUtMjRiMC00N2ZkLWIwMmUtYzY2ZTliZDFiYTE5XkEyXkFqcGc@._V1_.jpg"
    },
    {
      "id": "tt9699148",
      "url": "https://www.imdb.com/title/tt9699148/",
      "cast": "Judith Cabral, Sarah Natochenny",
      "rank": 85775,
      "text": "44 Cats",
      "type": "tvSeries",
      "year": 2018,
      "image": "https://m.media-amazon.com/images/M/MV5BOTM0ODFhNjktMzZkYS00ZmNiLTlmYzYtM2UxMzQwOGU2YWYwXkEyXkFqcGc@._V1_.jpg"
    },
    {
      "id": "tt32378496",
      "url": "https://www.imdb.com/title/tt32378496/",
      "cast": "Ana Tasya Lalita, Muhammad Redho",
      "rank": 2262933,
      "text": "Kucing Zel Zel",
      "type": "tvMiniSeries",
      "year": 2021,
      "image": "https://m.media-amazon.com/images/M/MV5BY2NkMTYyMDgtNTJkZC00MjUxLTk3OGQtNGYxOWI1ZjliMzE3XkEyXkFqcGc@._V1_.jpg"
    },
    {
      "id": "tt35670577",
      "url": "https://www.imdb.com/title/tt35670577/",
      "cast": "Kate Mara, Rooney Mara",
      "rank": 1699,
      "text": "Bucking Fastard",
      "type": "movie",
      "year": 2026,
      "image": "https://m.media-amazon.com/images/M/MV5BZjcxMzc5ZjctODg1NS00N2JkLTg5NDgtMDgwNmUzZTg5OGQxXkEyXkFqcGc@._V1_.jpg"
    },
    {
      "id": "tt10681410",
      "url": "https://www.imdb.com/title/tt10681410/",
      "rank": 2655882,
      "text": "Kucing Menangis",
      "type": "tvSeries",
      "year": 2018
    }
  ],
  "query": "kucing",
  "provider": "imdb"
}
GETExpand/v1/autocomplete:imdb-autocomplete/expandEnumerate titles — the seed with every letter appended, deduplicated.

Parameters

qstringrequired
Seed to expand
modifiersenumoptional
Which modifier sets to append. Default all Values: all, alphabet, questions, prepositions, digits.
langenumoptional
Language for the question and preposition sets. Default en Values: id, en.
countnumberoptional
Cap the returned list. Default: every unique result found

Request

curl -X GET "https://api.zpi.web.id/v1/autocomplete:imdb-autocomplete/expand?q=kucing&modifiers=all&lang=en&count=200" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "seed": "kucing",
  "count": 82,
  "items": [
    {
      "via": "seed",
      "text": "Kucing Hitam"
    },
    {
      "via": "seed",
      "text": "12:06 Rumah Kucing"
    },
    {
      "via": "seed",
      "text": "Rawa Kucing"
    },
    {
      "via": "seed",
      "text": "Kucing Air"
    },
    {
      "via": "seed",
      "text": "44 Cats"
    },
    {
      "via": "seed",
      "text": "Kucing Zel Zel"
    },
    {
      "via": "seed",
      "text": "Bucking Fastard"
    },
    {
      "via": "seed",
      "text": "Kucing Menangis"
    }
  ],
  "locale": "en",
  "provider": "imdb",
  "modifiers": "alphabet",
  "truncated": false,
  "variantsTried": 27,
  "variantsFailed": 0
}

Related APIs

More in autocomplete

Google Autocomplete

autocomplete/google

Google's suggestion lists across five surfaces — web, YouTube, Images, local and Scholar. The same endpoint returns a different universe per surface.

1.8K calls·30m cache

Yandex Autocomplete

autocomplete/yandex

Yandex search suggestions. The index is Russian-centric; other languages return fewer or no completions.

162 calls·30m cache

Yahoo Autocomplete

autocomplete/yahoo-autocomplete

Yahoo search autocomplete.

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