Search
Search the web, news, or images — optionally scraping results.
POST
/api/v1/search2 / 10 resultsRun a web, news, or image search and optionally scrape each result in one call — ideal for grounding agents in fresh sources.
Request
| Parameter | Type | Description |
|---|---|---|
queryrequired | string | The search query. |
limit | number | Number of results to return. Defaults to 5. |
sources | string[] | Any of web, news, images. Defaults to ["web"]. |
lang / country | string | Localize results, e.g. "en" / "us". |
scrapeOptions | object | If set, each result is scraped with these options (see Scrape). |
Example
bash
curl -X POST https://peep.shownomore.com/api/v1/search \
-H "Authorization: Bearer peep_live_xxx" \
-H "Content-Type: application/json" \
-d '{
"query": "best web scraping api",
"limit": 10,
"sources": [
"web"
]
}'