Search

Query the live web and get ranked, link-rich results — perfect for grounding LLM responses.

POST/api/v1/search

Request body

FieldTypeDescription
queryrequiredstringSearch query string.
limitnumberNumber of results to return (1–50).
Default: 10
langstringTwo-letter language code.
Default: "en"
countrystringTwo-letter country code for geo-targeted results.
Default: "us"

Example request

bash
curl https://neuroapi.me/api/v1/search \
-H "Authorization: Bearer $NEUROAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"best vector databases 2026","limit":5}'

Example response

json
{
"success": true,
"data": [
{
"title": "Top Vector Databases Compared",
"url": "https://example.com/vector-db",
"description": "A 2026 benchmark of open-source vector databases..."
}
],
"creditsCharged": 2
}