# Yahoo Search — Zapi reference > Yahoo Search scraper — hasil pencarian, snippet, related searches. **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/yahoo - 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 --- ## Yahoo Search **Category:** search-tools · **Slug:** `yahoo` **Detail page:** https://zpi.web.id/api/search-tools/yahoo Yahoo Search scraper — hasil pencarian, snippet, related searches. **Tags:** search, yahoo, web ### Search - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/search-tools:yahoo/search` - **Cache TTL:** 900s **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 50) | **cURL:** ```bash curl "https://api.zpi.web.id/v1/search-tools:yahoo/search?query=pizza&count=10&page=1" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/search-tools:yahoo/search?query=pizza&count=10&page=1", { 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:yahoo/search?query=pizza&count=10&page=1", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "count": 3, "query": "ihsg", "results": [ { "link": "https://www.idx.id/en/products/index/", "title": "Index [www.idx.id]", "snippet": "22 hours ago · Stock Index The Indonesia Stock Exchange (IDX) actively continues to innovate in the development through providing stock indices that can be used by all participants in Indonesia capital market. The index book \"IDX Stock Index Handbook\" contains a concise overview of the indices provided by the IDX.", "position": 1, "displayLink": "www.idx.id" }, { "link": "https://en.wikipedia.org/wiki/IDX_Composite", "title": "IDX Composite - Wikipedia", "snippet": "'Combined Stock Prices Index', IHSG) is a stock index of all stocks listed on the Indonesia Stock Exchange, IDX (formerly known as Jakarta Stock Exchange, JSX).", "position": 2, "displayLink": "en.wikipedia.org" }, { "link": "https://www.idxchannel.com/stocks?index=IHSG&indexdetail=mainidxindices", "title": "IDX Channel - Real Time Data Market & Chart Saham IHSG", "snippet": "Real-time Data Market, Chart, Data Historis, Analisis Dan Berita Saham Terkini Hari Ini | Market Stock - IDX Channel IHSG", "position": 3, "displayLink": "www.idxchannel.com" } ], "relatedSearches": [] } ``` --- _Generated: 2026-08-02T14:25:09.213Z_