# Wikipedia — Zapi reference > Wikipedia search — pencarian artikel ensiklopedia multi-bahasa (en/id) dengan title, snippet, URL halaman. **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a free key at https://zpi.web.id/dashboard/keys. **Response envelope:** `{ status, message, content }` **Rate limit:** 60 req/min on free tier. **Related:** - Detail page: https://zpi.web.id/api/search-tools/wikipedia - Endpoint catalog: https://zpi.web.id/category/search-tools - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## Wikipedia **Category:** search-tools · **Slug:** `wikipedia` **Detail page:** https://zpi.web.id/api/search-tools/wikipedia Wikipedia search — pencarian artikel ensiklopedia multi-bahasa (en/id) dengan title, snippet, URL halaman. **Tags:** search, knowledge, encyclopedia, wikipedia ### Search Cari hasil pencarian berdasarkan keyword dengan pagination. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/search-tools:wikipedia/search` - **Cache TTL:** 180s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `query` | string | query | yes | Search keyword | | `page` | number | query | no | Result page (default 1, max 50) | | `lang` | enum(en|id) | query | no | Language code (en/id). Default en | **cURL:** ```bash curl "https://api.zpi.web.id/v1/search-tools:wikipedia/search?query=pizza&page=1&lang=en" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/search-tools:wikipedia/search?query=pizza&page=1&lang=en", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/search-tools:wikipedia/search?query=pizza&page=1&lang=en", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "page": 1, "count": 10, "items": [ { "url": "https://en.wikipedia.org/wiki/Kuching", "title": "Kuching", "pageId": 153216, "source": "wikipedia.org", "summary": "the name \"Kuching\". It was perhaps derived from the Malay word for cat, \" kucing \", or from Cochin, an Indian trading port on the Malabar Coast and a generic" }, { "url": "https://en.wikipedia.org/wiki/Orthosiphon_aristatus", "title": "Orthosiphon aristatus", "pageId": 7979179, "source": "wikipedia.org", "summary": "microorganisms and fighting anorexia. It is known as kumis kucing in Indonesia and misai kucing in Malaysia, both of which translate to cat's whiskers. Orthosiphon" }, { "url": "https://en.wikipedia.org/wiki/Nasi_kucing", "title": "Nasi kucing", "pageId": 32345146, "source": "wikipedia.org", "summary": "Nasi kucing (from Javanese ꦤꦱꦶ​ꦏꦸꦕꦶꦁ 'nasi kucing '; Javanese: [ˈnasi ˈkutʃɪŋ], lit. 'small-portioned dish') is an Indonesian rice dish that originated" }, { "url": "https://en.wikipedia.org/wiki/Cat_tongue", "title": "Cat tongue", "pageId": 33131317, "source": "wikipedia.org", "summary": "(Spanish), macskanyelv (Hungarian), limbă de pisică (Romanian) or lidah kucing (Indonesian). Cat's tongue cookies are sweet, thin, and crunchy. The original" }, { "url": "https://en.wikipedia.org/wiki/Kuce", "title": "Kuce", "pageId": 21823541, "source": "wikipedia.org", "summary": "Kuce [ˈkut͡sɛ] is a village in the administrative district of Gmina Janowiec Kościelny, within Nidzica County, Warmian-Masurian Voivodeship, in northern" }, { "url": "https://en.wikipedia.org/wiki/Raas_cat", "title": "Raas cat", "pageId": 74928307, "source": "wikipedia.org", "summary": "Retrieved 9 February 2026. Ras Kucing Asli Indonesia. kucingkita.com. Accessed 15 August 2014. Mengenal Kucing Busok: Kucing Asli Pulau Raas. portalmadura" }, { "url": "https://en.wikipedia.org/wiki/Kue_lidah_kucing", "title": "Kue lidah kucing", "pageId": 64138534, "source": "wikipedia.org", "summary": "related to Kue lidah kucing . \"Resep Kue Lidah Kucing yang Bisa Dibikin Sambil Ngabuburit #dirumahaja\". kumparan. \"Kue Lidah Kucing , Si Gurih Warisan Belanda\"" }, { "url": "https://en.wikipedia.org/wiki/List_of_experimental_cat_breeds", "title": "List of experimental cat breeds", "pageId": 28660394, "source": "wikipedia.org", "summary": "is recognised by the Rare and Exotic Feline Registry. The Kucing Malaysia, or Piawaian Kucing Malaysia, is the first indigenous Malaysian cat breed. It" } ], "total": 929, "hasMore": true, "nextPage": 2 } ``` --- _Generated: 2026-08-02T14:26:20.744Z_