mirror of
https://git.openapi.site/https://github.com/desirecore/config-center.git
synced 2026-07-24 08:33:29 +08:00
36 lines
736 B
JSON
36 lines
736 B
JSON
{
|
|
"id": "brave",
|
|
"name": "Brave Search API",
|
|
"capability": "web_search",
|
|
"enabled": false,
|
|
"builtin": true,
|
|
"priority": 20,
|
|
"endpoint": "https://api.search.brave.com/res/v1/web/search",
|
|
"method": "GET",
|
|
"auth": {
|
|
"type": "header",
|
|
"headerName": "X-Subscription-Token",
|
|
"apiKeyRef": "brave"
|
|
},
|
|
"request": {
|
|
"headers": {
|
|
"Accept": "application/json",
|
|
"Accept-Encoding": "gzip"
|
|
},
|
|
"queryParams": {
|
|
"q": "${query}",
|
|
"count": "${maxResults}"
|
|
}
|
|
},
|
|
"response": {
|
|
"resultsPath": "web.results",
|
|
"item": {
|
|
"titlePath": "title",
|
|
"urlPath": "url",
|
|
"snippetPath": "description",
|
|
"pageAgePath": "page_age"
|
|
}
|
|
},
|
|
"timeoutMs": 10000
|
|
}
|