Search
Query the live web and get ranked, link-rich results — perfect for grounding LLM responses.
POST
/api/v1/searchRequest body
| Field | Type | Description |
|---|---|---|
| queryrequired | string | Search query string. |
| limit | number | Number of results to return (1–50). Default: 10 |
| lang | string | Two-letter language code. Default: "en" |
| country | string | Two-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}