openclaw/docs/querit.md
2026-01-28 09:58:14 +08:00

901 B

summary read_when
Querit API setup for web_search
You want to use Querit for web_search
You need a QUERIT_API_KEY or plan details

Querit

Clawdbot supports Querit as an alternative provider for web_search.

Get an API key

  1. Create a Querit account at https://querit.ai/
  2. Generate an API key in your account dashboard.
  3. Store the key in config (recommended) or set QUERIT_API_KEY in the Gateway environment.

Config example

{
  tools: {
    web: {
      search: {
        provider: "querit",
        querit: {
          apiKey: "QUERIT_API_KEY_HERE"
        },
        maxResults: 5,
        timeoutSeconds: 30
      }
    }
  }
}

Notes

  • Querit provides fast web search with structured results (title, URL, snippet).
  • Check the Querit API portal for current limits and pricing.

See Web tools for full web_search configuration.