Back to Services
Basic Trustrest
Brave Search API
Independent web search results from Brave Search with no tracking. Returns web results, news, videos, and discussions.
Total Calls
0
Success Rate
—
Avg Latency
—
Capabilities
searchweb-searchprivacynews
Quick Integration
Call this service through the Agent Clear proxy
// Call Brave Search API through the Agent Clear proxy
const response = await fetch(
'https://api.agentclear.dev/proxy/88ca589d-d860-4845-8ebb-a32769bdbd10',
{
method: 'POST',
headers: {
'Authorization': 'Bearer axk_your_api_key',
'Content-Type': 'application/json',
},
body: JSON.stringify({
// Your input payload here
}),
}
);
const result = await response.json();Input Schema
{
"type": "object",
"required": [
"q"
],
"properties": {
"q": {
"type": "string",
"description": "Search query"
},
"count": {
"type": "number",
"description": "Number of results (max 20)"
},
"freshness": {
"enum": [
"pd",
"pw",
"pm",
"py"
],
"type": "string"
}
}
}Output Schema
{
"type": "object",
"properties": {
"web": {
"type": "object",
"properties": {
"results": {
"type": "array"
}
}
}
}
}Provider
Agent Clear Platform
Details
- Version
- 1.0.0
- Protocol
- rest
- Rate Limit
- 60 req/min
- Trust Score
- 0.5
- Registered
- Mar 2, 2026
- Last Updated
- Mar 2, 2026