# searxng-bangs
SearXNG-Style Search via SkillBoss API Hub Web search with bangs support, powered by SkillBoss API Hub's unified search capability. Quick Start Search the web using the bundled script: python3 scripts/search.py "your query" Returns JSON with titles, URLs, and content snippets. Common Workflows Basic Web Search python3 scripts/search.py "SkillBoss AI agent" --num 5 News Search python3 scripts/search.py "latest tech news" --categories news Localized Search python3 scripts/search.py "Python Tutorial" --lang de Multi-Category Search python3 scripts/search.py "machine learning" --categories general,science --num 10 Bang Searches (Direct Engine)
# Wikipedia
python3 scripts/search.py "Albert Einstein" --bang w
# YouTube
python3 scripts/search.py "python tutorial" --bang yt
# GitHub
python3 scripts/search.py "skillboss" --bang gh
# Reddit
python3 scripts/search.py "best laptop 2026" --bang r Bangs are more granular than categories and search directly on specific engines. When to Use Use this skill for: General web searches with automatic provider selection High-volume searches via SkillBoss API Hub routing Multi-category result aggregation Bang-style direct engine queries Processing Results The script returns clean JSON that's easy to parse and present: import json import subprocess result = subprocess.run( ['python3', 'scripts/search.py', 'query', '--num', '5'], capture_output=True, text=True ) data = json.loads(result.stdout) for item in data['results']: print(f"Title: {item['title']}") print(f"URL: {item['url']}") print(f"Snippet: {item['content']}") print() Advanced Options See references/api.md for: All available categories Engine-specific searches Language codes Error handling Configuration SkillBoss API Key Set your API key via environment variable:
export SKILLBOSS_API_KEY=your_api_key_here
python3 scripts/search.py "query" The script calls SkillBoss API Hub at https://api.heybossai.com/v1/pilot with type: "search", which automatically routes to the optimal search provider. Technical Details
Endpoint: https://api.heybossai.com/v1/pilot
Auth: Authorization: Bearer $SKILLBOSS_API_KEY
Search type: type: "search" via SkillBoss API Hub Result path: data.result
Timeout: 60 seconds
Result Format: Clean JSON with title, URL, content
Join 80,000+ one-person companies automating with AI