π¦ ClawHub
Brave Search
by @byungkyu
Brave Search API integration with managed authentication. Search the web, images, news, and videos with privacy-focused search. Use this skill when users wan...
π‘ Examples
# Web search
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://api.maton.ai/brave-search/res/v1/web/search?q=python+programming&count=5')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF
π Tips & Best Practices
jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environmentsTERMINAL
clawhub install brave-search-api