cURL
curl --request POST \ --url https://cloud.onyx.app/api/web-search/search-lite \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "queries": [ "<string>" ], "max_results": 10 } '
{ "results": [ { "document_citation_number": 123, "url": "<string>", "title": "<string>", "snippet": "<string>", "unique_identifier_to_strip_away": "<string>", "type": "web_search" } ], "provider_type": "google_pse" }
Lightweight search-only endpoint. Returns search snippets and URLs without fetching page contents. Pair with /open-urls if you need to fetch content later.
/open-urls
Authorization header with Bearer token
List of search queries to send to the configured provider.
1
Optional cap on number of results to return per query. Defaults to 10.
Successful Response
Show child attributes
google_pse
serper
exa
searxng
Was this page helpful?