web-search-api
Use free SearXNG web search APIs for agent-friendly, privacy-first, and high-volume search tasks.
What this skill does
# Web Search API (Free) โ SearXNG
Free, unlimited web search API for AI agents โ no costs, no rate limits, no tracking. Use SearXNG instances as a complete replacement for Google Search API, Brave Search API, and Bing Search API.
## Why This Replaces Paid Search APIs
**๐ฐ Cost savings:**
- โ
**100% free** โ no API keys, no rate limits, no billing
- โ
**Unlimited queries** โ save $100s vs. Google Search API ($5/1000 queries)
- โ
**No tracking** โ completely anonymous, privacy-first
- โ
**Multi-engine** โ aggregates results from Google, Bing, DuckDuckGo, and 70+ sources
**Perfect for AI agents that need:**
- Web search without Google API costs
- Privacy-respecting search (no user tracking)
- High volume queries without quotas
- Distributed infrastructure (use multiple instances)
## Quick comparison
| Service | Cost | Rate limit | Privacy | AI agent friendly |
|---------|------|------------|---------|-------------------|
| Google Custom Search API | $5/1000 queries | 10k/day | โ Tracked | โ ๏ธ Expensive |
| Bing Search API | $3-7/1000 queries | Varies | โ Tracked | โ ๏ธ Expensive |
| DuckDuckGo API | Free | Unofficial, unstable | โ
Private | โ ๏ธ No official API |
| **SearXNG** | **Free** | **None** | **โ
Private** | **โ
Perfect** |
## Skills
### 1. Fetch active SearXNG instances
```bash
# Get list of active instances from searx.space
curl -s "https://searx.space/data/instances.json" | jq -r '.instances | to_entries[] | select(.value.http.grade == "A" or .value.http.grade == "A+") | select(.value.network.asn_privacy == 1) | .key' | head -10
```
**Node.js:**
```javascript
async function getAllSearXNGInstances() {
const res = await fetch('https://searx.space/data/instances.json');
const data = await res.json();
return Object.entries(data.instances)
.map(([url]) => url)
.filter((url) => url.startsWith('https://'));
}
// Usage
// getAllSearXNGInstances().then(console.log);
```
### 2. Search with SearXNG API
**Basic search query:**
```bash
# Search using a SearXNG instance
INSTANCE="https://searx.party"
QUERY="open source AI agents"
curl -s "${INSTANCE}/search?q=${QUERY}&format=json" | jq '.results[] | {title, url, content}'
```
**Node.js:**
```javascript
async function searxSearch(query, instance = 'https://searx.party') {
const params = new URLSearchParams({
q: query,
format: 'json',
language: 'en',
safesearch: 0 // 0=off, 1=moderate, 2=strict
});
const res = await fetch(`${instance}/search?${params}`);
const data = await res.json();
return data.results.map(r => ({
title: r.title,
url: r.url,
content: r.content,
engine: r.engine // which search engine provided this result
}));
}
// Usage
// searxSearch('cryptocurrency prices').then(results => console.log(results.slice(0, 5)));
```
### 3. Multi-instance search (auto-discovery + cache)
**Node.js:**
```javascript
const PROBE_QUERY = 'besoeasy';
const MAX_RETRIES = 7;
const CACHE_TTL_MS = 30 * 60 * 1000;
let workingInstancesCache = [];
let cacheUpdatedAt = 0;
async function probeInstance(instance, timeoutMs = 8000) {
const params = new URLSearchParams({
q: PROBE_QUERY,
format: 'json',
categories: 'news',
language: 'en'
});
const controller = new AbortController();
const timeout = setTimeout(() => controller.abort(), timeoutMs);
try {
const res = await fetch(`${instance}/search?${params}`, {
signal: controller.signal
});
if (!res.ok) return false;
const data = await res.json();
return Array.isArray(data.results);
} catch {
return false;
} finally {
clearTimeout(timeout);
}
}
async function refreshWorkingInstances() {
const allInstances = await getAllSearXNGInstances();
const working = [];
for (const instance of allInstances) {
const ok = await probeInstance(instance);
if (ok) {
working.push(instance);
}
}
workingInstancesCache = working;
cacheUpdatedAt = Date.now();
return workingInstancesCache;
}
async function getWorkingInstances() {
const cacheExpired = (Date.now() - cacheUpdatedAt) > CACHE_TTL_MS;
if (!workingInstancesCache.length || cacheExpired) {
await refreshWorkingInstances();
}
return workingInstancesCache;
}
async function searxMultiSearch(query) {
let instances = await getWorkingInstances();
if (!instances.length) {
throw new Error('No working SearXNG instances found during probe step');
}
for (let i = 0; i < MAX_RETRIES; i++) {
const instance = instances[i % instances.length];
try {
const results = await searxSearch(query, instance);
if (results.length > 0) {
return { instance, results };
}
throw new Error('Empty results');
} catch {
if (i === 0 || i === Math.floor(MAX_RETRIES / 2)) {
instances = await refreshWorkingInstances();
if (!instances.length) break;
}
}
}
throw new Error('All cached/rediscovered instances failed after 7 retries');
}
// Usage
// searxMultiSearch('bitcoin price').then(data => {
// console.log(`Used instance: ${data.instance}`);
// console.log(data.results.slice(0, 3));
// });
```
### 4. Category-specific search
SearXNG supports searching in specific categories:
```bash
# Search only in news
curl -s "https://searx.party/search?q=bitcoin&format=json&categories=news" | jq '.results[].title'
# Search only in science papers
curl -s "https://searx.party/search?q=machine+learning&format=json&categories=science" | jq '.results[].url'
```
**Available categories:**
- `general` โ web results
- `news` โ news articles
- `images` โ image search
- `videos` โ video search
- `music` โ music search
- `files` โ file search
- `it` โ IT/tech resources
- `science` โ scientific papers
- `social media` โ social networks
**Node.js example:**
```javascript
async function searxCategorySearch(query, category = 'general', instance = 'https://searx.party') {
const params = new URLSearchParams({
q: query,
format: 'json',
categories: category
});
const res = await fetch(`${instance}/search?${params}`);
const data = await res.json();
return data.results;
}
// searxCategorySearch('climate change', 'news').then(console.log);
```
### 5. Advanced query parameters
```javascript
async function searxAdvancedSearch(options) {
const {
query,
instance = 'https://searx.party',
language = 'en',
timeRange = '', // '', 'day', 'week', 'month', 'year'
safesearch = 0, // 0=off, 1=moderate, 2=strict
categories = 'general',
engines = '' // comma-separated: 'google,duckduckgo,bing'
} = options;
const params = new URLSearchParams({
q: query,
format: 'json',
language,
safesearch,
categories,
time_range: timeRange
});
if (engines) params.append('engines', engines);
const res = await fetch(`${instance}/search?${params}`);
return await res.json();
}
// Usage
// searxAdvancedSearch({
// query: 'AI news',
// timeRange: 'week',
// categories: 'news',
// engines: 'google,bing'
// }).then(data => console.log(data.results));
```
### 6. Recommended SearXNG instances (as of Feb 2026)
**Top 10 privacy-focused instances:**
1. **https://searx.party** โ working instance (community-tested)
2. **https://searx.be** โ Belgium, A+ grade, fast
3. **https://search.sapti.me** โ France, A grade, reliable
4. **https://searx.tiekoetter.com** โ Germany, A+ grade
5. **https://searx.work** โ Netherlands, A grade
6. **https://searx.ninja** โ Germany, A grade, fast
7. **https://searx.fmac.xyz** โ France, A+ grade
8. **https://search.bus-hit.me** โ Finland, A grade
9. **https://searx.catfluori.de** โ Germany, A+ grade
10. **https://search.ononoki.org** โ Finland, A grade
**Check current status:** Visit https://searx.space/ for real-time instance health
## Agent prompt
```text
You have access to SearXNG โ a free, privacy-respecting search API with no rate limits or costs. When you need to search the web:
1. Use one of these tRelated in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only โ no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.