δΈ­ζ–‡

OpenClaw Web Search API
AI Search API Interface

Complete web search programming interface β€” integrate powerful AI search capabilities into your applications.

What is OpenClaw Web Search API?

OpenClaw Web Search API is a programming interface provided by the OpenClaw platform. It allows developers to call web search functionality through code, encapsulating complex search logic into simple API calls.

πŸ”Œ API Capabilities: Send search queries, get structured results, filter and sort, switch engines β€” all in a few lines of code.

API Endpoints

Example Call

import requests

url = "http://localhost:3000/api/search"
data = {
    "query": "OpenClaw AI Assistant",
    "engine": "brave",
    "maxResults": 10
}
response = requests.post(url, json=data)
print(response.json())

Request Parameters

Response Format

{
  "results": [
    {
      "title": "Result Title",
      "url": "https://...",
      "snippet": "Result snippet",
      "engine": "brave"
    }
  ],
  "total": 100,
  "query": "search query"
}

Use Cases

Conclusion

Visit openclaw.ai for complete API documentation.