Search

Search the web, news, or images — optionally scraping results.

POST/api/v1/search2 / 10 results

Run a web, news, or image search and optionally scrape each result in one call — ideal for grounding agents in fresh sources.

Request

ParameterTypeDescription
queryrequiredstringThe search query.
limitnumberNumber of results to return. Defaults to 5.
sourcesstring[]Any of web, news, images. Defaults to ["web"].
lang / countrystringLocalize results, e.g. "en" / "us".
scrapeOptionsobjectIf 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"
  ]
}'