brave-search-api
This skill enables web searching using Brave Search API directly via curl. Use when searching for current information, news, articles, or web content. MCP server not required - calls API directly.
npx skills add majiayu000/claude-skill-registry --skill brave-search-api-s-hiraoku-vscode-sidebar-termi --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Brave Search API (Direct) ## Overview This skill enables web searching using the Brave Search API directly via curl commands. No MCP server required - saves context tokens. ## API Key Environment variable: `BRAVE_API_KEY` ## Web Search ### Endpoint ``` GET https://api.search.brave.com/res/v1/web/search ``` ### Parameters - `q` (required): Search query - `count` (optional): Results count (1-20, default 10) - `offset` (optional): Pagination offset ### Usage Generate and execute this curl command: ```bash curl -s "https://api.search.brave.com/res/v1/web/search?q=QUERY&count=10" \ -H "Accept: application/json" \ -H "X-Subscription-Token: $BRAVE_API_KEY" ``` ### Example ```bash curl -s "https://api.search.brave.com/res/v1/web/search?q=xterm.js+WebGL+tutorial&count=5" \ -H "Accept: application/json" \ -H "X-Subscription-Token: $BRAVE_API_KEY" | jq '.web.results[] | {title, url, description}' ``` ## Local Search ### Endpoint ``` GET https://api.search.brave.com/res/v1/local/search ``` ### Usage ```bash curl -s "https://api.search.brave.com/res/v1/local/search?q=coffee+near+Shibuya" \ -H "Accept: application/json" \ -H "X-Subscription-Token: $BRAVE_API_KEY" ``` ## Response Processing Use
- Overview
- API Key
- Web Search
- Endpoint
- Parameters
- Usage
- Example
- Local Search
- Response Processing
- Common Workflows
- Research a Technology
- Find Error Solutions
- Notes
curl -s "https://api.search.brave.com/res/v1/web/search?q=QUERY&count=10" \ curl -s "https://api.search.brave.com/res/v1/web/search?q=xterm.js+WebGL+tutorial&count=5" \ curl -s "https://api.search.brave.com/res/v1/local/search?q=coffee+near+Shibuya" \ Get titles and URLs Get descriptions Get first 3 results curl -s "https://api.search.brave.com/res/v1/web/search?q=VS+Code+extension+development+2024&count=10" \ curl -s "https://api.search.brave.com/res/v1/web/search?q=WebGL+context+lost+solution&count=10" \
What does the brave-search-api skill do?
This skill enables web searching using Brave Search API directly via curl. Use when searching for current information, news, articles, or web content. MCP server not required - calls API directly.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill brave-search-api-s-hiraoku-vscode-sidebar-termi --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
