BuildFast Search

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

MethodPath
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

ParameterTypeRequiredDescription
querystringYesThe 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

StatusDescription
400Bad Request (missing query).
401Unauthorized (invalid or missing API key).
402Payment Required (insufficient credits).
429Too Many Requests (rate limit exceeded).
500Internal 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.