All cards
Data source active public

data-searxng

SearxNG meta-search on Beacon Docker port 8888 (55-day uptime)

Endpoint
http://127.0.0.1:8888
Packaging
docker
Owner
operator
Version
v1
Updated
2026-06-26
Health check
curl -fsS http://127.0.0.1:8888/healthz

Purpose

Self-hosted meta-search engine. Long-running Docker container. Likely tool back-end for FlowHunter and Skipper web-augmented features. Consumer-service wiring is inferred; operator should confirm.

Capabilities 1

meta-search
Meta-search aggregation across engines

History 1

Createdai2026-06-26
Card created by AI session (audit 2787).

Related documents 0

Raw card data (JSON)

click to expand
{
  "id": "data-searxng",
  "kind": "data-source",
  "summary": "SearxNG meta-search on Beacon Docker port 8888 (55-day uptime)",
  "purpose": "Self-hosted meta-search engine. Long-running Docker container. Likely tool back-end for FlowHunter and Skipper web-augmented features. Consumer-service wiring is inferred; operator should confirm.",
  "endpoint": "http://127.0.0.1:8888",
  "exposure": "public",
  "capabilities_json": "[{\"name\": \"meta-search\", \"description\": \"Meta-search aggregation across engines\"}]",
  "dependencies_json": "[\"node-beacon-vps\"]",
  "instructions_slug": "",
  "health_check": "curl -fsS http://127.0.0.1:8888/healthz",
  "credential_alias": "",
  "packaging": "docker",
  "owner": "operator",
  "status": "active",
  "required_tags_json": "[\"ai-authored\", \"capability-card\", \"data-source\", \"docs\", \"uai-explorer\"]",
  "ai_visible": 1,
  "human_visible": 1,
  "embedding_dim": 0,
  "version_id": 1,
  "created_at": "2026-06-26T23:53:33.082775+00:00",
  "updated_at": "2026-06-26T23:53:33.082775+00:00"
}

API examples

curl, Python, JavaScript
# curl
curl -H "Authorization: Bearer $UAI_EXPLORER_AI_API_KEY" \
     https://explorer.united-ai.ca/api/ai/capability/data-searxng
# python (requests)
import requests
r = requests.get(
    "https://explorer.united-ai.ca/api/ai/capability/data-searxng",
    headers={"Authorization": f"Bearer {token}"},
)
card = r.json()
// JavaScript (fetch)
const r = await fetch(
  "https://explorer.united-ai.ca/api/ai/capability/data-searxng",
  { headers: { Authorization: `Bearer ${token}` } }
);
const card = await r.json();