Execute Web Search Lite
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"
}
]
}Search
Execute Web Search Lite
Lightweight search-only endpoint. Returns search snippets and URLs without
fetching page contents. Pair with /open-urls if you need to fetch content
later.
POST
/
web-search
/
search-lite
Execute Web Search Lite
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"
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.onyx.app/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Authorization header with Bearer token
Body
application/json
Was this page helpful?
⌘I