# Bing Search — Zapi reference > Bing Search. pencarian web lengkap, snippet, link, multi-bahasa dan region **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/bing - 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 --- ## Bing Search **Category:** search-tools · **Slug:** `bing` **Detail page:** https://zpi.web.id/api/search-tools/bing Bing Search. pencarian web lengkap, snippet, link, multi-bahasa dan region **Tags:** search, bing, engine ### Search - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/search-tools:bing/search` - **Cache TTL:** 3600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `query` | string | query | yes | Search keyword | | `count` | number | query | no | Results per page 1-50 (default 10) | | `page` | number | query | no | Result page (default 1, max 20) | | `language` | string | query | no | Language code. Default en | | `region` | string | query | no | Region code. Default us | **cURL:** ```bash curl "https://api.zpi.web.id/v1/search-tools:bing/search?query=pizza&count=10&page=1&language=en®ion=us" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/search-tools:bing/search?query=pizza&count=10&page=1&language=en®ion=us", { 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:bing/search?query=pizza&count=10&page=1&language=en®ion=us", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "page": 1, "count": 10, "items": [ { "url": "https://brew.sh/", "title": "Homebrew: The Package Manager for Everywhere", "source": "bing.com", "snippet": "Homebrew installs the command-line tools and applications you need across macOS, Linux and WSL. Homebrew won’t install files outside its prefix.", "displayUrl": "brew.sh" }, { "url": "https://docs.brew.sh/Installation", "title": "Homebrew Documentation: Installation", "source": "bing.com", "snippet": "The script installs Homebrew to its default, supported, best prefix (/opt/homebrew for Apple Silicon, /usr/local for macOS Intel and /home/linuxbrew/.linuxbrew for Linux) so that you don’t need sudo …", "displayUrl": "https://docs.brew.sh › Installation" }, { "url": "https://www.youtube.com/channel/UCVQGtUcRjHTQLTTu-5s9_4Q", "title": "Brew - YouTube", "source": "bing.com", "snippet": "In our latest episode, many of you finally got to meet the newest Brew in the Brew-niverse! ☕ (And if you haven't seen him yet, make sure to check out our latest episode.)", "displayUrl": "https://www.youtube.com › channel" }, { "url": "https://github.com/Homebrew/brew", "title": "Homebrew/brew: The Package Manager for Everywhere - GitHub", "source": "bing.com", "snippet": "Homebrew is a non-profit project run entirely by volunteers, not employees. We need your funds to pay for software, hardware and hosting around continuous integration and future improvements to the …", "displayUrl": "https://github.com › Homebrew › brew" }, { "url": "https://www.merriam-webster.com/dictionary/brew", "title": "BREW Definition & Meaning - Merriam-Webster", "source": "bing.com", "snippet": "3 days ago · The meaning of BREW is to prepare (beer, ale, etc.) by steeping, boiling, and fermentation or by infusion and fermentation. How to use brew in a sentence.", "displayUrl": "https://www.merriam-webster.com › dictionary › brew" }, { "url": "https://www.brew-watches.com/", "title": "Brew Watch Co. – Brew Watches", "source": "bing.com", "snippet": "Brew Watch Co. is the top USA microbrand that creates retro-inspired timepieces.", "displayUrl": "brew-watches.com" }, { "url": "https://docs.brew.sh/Language-Runtimes-and-Packages", "title": "Homebrew Documentation: Language Runtimes and Packages", "source": "bing.com", "snippet": "Language Runtimes and Packages Homebrew provides language runtimes and applications but does not manage packages installed directly by tools such as gem, npm, pip or cpan. Those packages are …", "displayUrl": "https://docs.brew.sh › Language-Runtimes-and-Packages" }, { "url": "https://7brew.com/", "title": "7 Brew Drive-thru Coffee", "source": "bing.com", "snippet": "Visit 7 Brew for an elevated coffee drive-thru experience.", "displayUrl": "7brew.com" } ], "total": 83400, "hasMore": true, "nextPage": 2 } ``` --- _Generated: 2026-08-02T14:24:29.574Z_