FastSearch API
High-speed real-time web search for AI agents and developers.
FastSearch
The FastSearch API provides real-time web search results optimized for AI context. It is designed to be extremely fast, providing structured results including titles, URLs, and text snippets.
Endpoint
| Method | Path |
|---|---|
POST | /v1/search/query |
Authentication
All requests to the FastSearch API must be authenticated using a developer API key (lsk_*).
Authorization: Bearer YOUR_LSK_KEY
Request Body
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | Yes | The search query string. |
Example Request
curl -X POST https://api.novisurf.top/v1/search/query \
-H "Authorization: Bearer YOUR_LSK_KEY" \
-H "Content-Type: application/json" \
-d '{
"query": "Who is the founder of Intel?"
}'
Response Format
The API returns a JSON object containing an array of search results.
Example Response
{
"results": [
{
"title": "Gordon Moore - Wikipedia",
"url": "https://en.wikipedia.org/wiki/Gordon_Moore",
"content": "Gordon Earle Moore was an American businessman, engineer, and the co-founder and chairman emeritus of Intel Corporation...",
"score": 0.98
},
{
"title": "Robert Noyce | Biography & Intel",
"url": "https://www.britannica.com/biography/Robert-Noyce",
"content": "Robert Noyce, American engineer and cofounder of Intel Corporation, one of the most significant innovators of the microchip...",
"score": 0.95
}
]
}
Errors
| Status | Description |
|---|---|
400 | Bad Request (missing query). |
401 | Unauthorized (invalid or missing API key). |
402 | Payment Required (insufficient credits). |
429 | Too Many Requests (rate limit exceeded). |
500 | Internal Server Error (search service unavailable). |
Usage & Billing
- FastSearch is billed per search request.
- Credits are deducted from your developer account balance.
- Rate limits are shared with your AI chat completion usage.
Was this page helpful?
Last updated today
Built with Documentation.AI