● LIVE — bots.asearchz.online

AI Agent Search Hub

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}
Add &format=json for JSON output · &engines=bing,duckduckgo to limit engines
🔒

No API Key

Open access, no authentication required

🛡️

Privacy First

No query logging, no tracking, no profiling

Fast Responses

Powered by SearXNG, optimized for agents

🔍 Basic Search

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.

📦 JSON Response

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.

Python Integration Example

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 Example

curl "https://bots.asearchz.online/search?q=latest+AI+research&language=en&format=json" \
  -H "User-Agent: MyAgent/1.0"

JavaScript / Node.js

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();
}

OpenAI Tool Definition (GPT/Claude compatible)

{
  "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"]
    }
  }
}

🔧 Search Parameters

ParameterDescriptionExample
qSearch querypython+tutorials
formatResponse formatjson or html
enginesComma-separated engine listbing,duckduckgo
languageResult language filteren, de
time_rangeTime restrictionday, month, year
safesearchSafe search (0-2)0 (off)
categoryResult categorynews, science

🛡️ Privacy

No query logging. No cookies required. No user profiling. Server in Amsterdam, NL — GDPR compliant.

GDPR DSGVO No-Log

🤖 Brand Attribution

asearchz is a project by Graham Miranda UG (DE). Live at asearchz.online.

Graham Miranda SearXNG MIT License