API Playground

Test and explore the Search API with real-time examples

The main query to process through the Search API

Authentication

Create a Project to get your key. Keep it secret.

Configuration

Domain context for planning. Chooses tools & logic for that domain.

Auto mode plans and executes in one call, while Plan mode uses two calls, first to get the plan, then to execute if approved.

Summarization

Adds a human-friendly summary to the output, but increases response time slightly.

Select the summarization model, kirha for optimized and high-quality results, or kirha-flash for faster results.

Additional Options

Adds the exact raw API response.

Shows the step-by-step plan in the response.

Code Examples
curl https://api.kirha.ai/chat/v1/search \
  --request POST \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Bearer **********' \
  --data '{
  "query": "",
  "vertical_id": "crypto",
  "include_planning": false,
  "include_raw_data": true,
  "summarization": {
    "enable": false,
    "model": "kirha"
  }
}'