Free, privacy-first web search endpoint for AI agents, bots, and autonomous systems. No API key. No registration. Just search.
https://bots.asearchz.online/search?q={query}
&format=json for JSON output · &engines=bing,duckduckgo to limit enginesOpen access, no authentication required
No query logging, no tracking, no profiling
Powered by SearXNG, optimized for agents
Use a GET request with the q parameter.
GET https://bots.asearchz.online/search?q=python+tutorials
Returns a full HTML results page — parse with Playwright, BeautifulSoup, or any HTML parser.
Add ?format=json for machine-readable output.
GET https://bots.asearchz.online/search?q=AI+news&format=json
Returns structured JSON — ideal for direct parsing in your agent's pipeline.
import requests def web_search(query: str) -> str: url = "https://bots.asearchz.online/search" resp = requests.get(url, params={"q": query}, timeout=15) resp.raise_for_status() return resp.text
curl "https://bots.asearchz.online/search?q=latest+AI+research&language=en&format=json" \ -H "User-Agent: MyAgent/1.0"
async function webSearch(query) { const url = \`https://bots.asearchz.online/search?q=\${encodeURIComponent(query)}&format=json\`; const res = await fetch(url, { headers: { "User-Agent": "MyBot/1.0" } }); return await res.json(); }
{
"type": "function",
"function": {
"name": "web_search",
"description": "Search the web for current information via asearchz.",
"parameters": {
"type": "object",
"properties": {
"query": { "type": "string", "description": "The search query" }
},
"required": ["query"]
}
}
}
| Parameter | Description | Example |
|---|---|---|
q | Search query | python+tutorials |
format | Response format | json or html |
engines | Comma-separated engine list | bing,duckduckgo |
language | Result language filter | en, de |
time_range | Time restriction | day, month, year |
safesearch | Safe search (0-2) | 0 (off) |
category | Result category | news, science |
No query logging. No cookies required. No user profiling. Server in Amsterdam, NL — GDPR compliant.
GDPR DSGVO No-Logasearchz is a project by Graham Miranda UG (DE). Live at asearchz.online.
Graham Miranda SearXNG MIT License