Skip to main content

onionoo-fastapi

FastAPI-based semantic/OpenAPI proxy for the Tor Onionoo API.

Reference spec: Tor Metrics – Onionoo

Hosted instance

  • Service: https://onionoo.anoni.net
  • Swagger UI: https://onionoo.anoni.net/docs

Releases

Tagged releases (vX.Y.Z) trigger two GitHub Actions workflows:

  • .github/workflows/release.yml — builds the wheel/sdist and publishes to PyPI via Trusted Publishing. Register this workflow as a trusted publisher on the onionoo-fastapi PyPI project once before the first tag.
  • .github/workflows/docker.yml — builds a multi-arch image and pushes to ghcr.io/<owner>/onionoo-fastapi. Uses the default GITHUB_TOKEN.

Cut a release with:

git tag -a v0.2.0 -m "Release 0.2.0"
git push origin v0.2.0

License

MIT. See LICENSE.

Requirements

  • Python 3.11+
  • uv

Install

git clone https://github.com/anoni-net/onionoo-fastapi
cd onionoo-fastapi
uv sync

Or if you already have the source:

cd onionoo-fastapi
uv sync

Run

fastapi run app.main:app --reload --host 0.0.0.0 --port 8000

Note: fastapi run requires FastAPI version 0.110.0 or newer.

OpenAPI docs:

  • Swagger UI: http://localhost:8000/docs
  • OpenAPI JSON: http://localhost:8000/openapi.json

Test

uv sync --extra dev
uv run pytest

Docker

Build and run with Docker Compose:

docker compose up -d --build

If port 8000 is already in use, override host port (example: 8001):

HOST_PORT=8001 docker compose up -d --build

Stop:

docker compose down

Configuration via environment variables (example):

ONIONOO_BASE_URL=https://onionoo.torproject.org HOST_PORT=8001 docker compose up -d --build

API

This service exposes semantic endpoints under /v1/*:

  • GET /v1/summary
  • GET /v1/details
  • GET /v1/bandwidth
  • GET /v1/weights
  • GET /v1/clients
  • GET /v1/uptime

Aggregate (server-side group-by, sorted by relay count):

  • GET /v1/aggregate/countries — buckets by two-letter country code
  • GET /v1/aggregate/as — buckets by autonomous system number
  • GET /v1/aggregate/flags — buckets by directory-authority flag (a relay can fall into multiple flag buckets)

Plus:

  • GET /healthz — static liveness
  • GET /healthz/ready — verifies upstream reachability (cached)
  • GET /metrics — Prometheus format

Example requests

# Summary (semantic keys; upstream short keys are transformed)
curl -s 'http://localhost:8000/v1/summary?limit=1' | jq .

# Details (supports Onionoo query parameters + details-only `fields`)
curl -s 'http://localhost:8000/v1/details?limit=1&search=moria&fields=nickname,fingerprint' | jq .

# Bandwidth
curl -s 'http://localhost:8000/v1/bandwidth?limit=1&search=moria' | jq .

# Weights (relays only)
curl -s 'http://localhost:8000/v1/weights?limit=1&search=moria' | jq .

# Clients (bridges only)
curl -s 'http://localhost:8000/v1/clients?limit=1' | jq .

# Uptime
curl -s 'http://localhost:8000/v1/uptime?limit=1&search=moria' | jq .

Semantic field mapping notes

  • /v1/summary transforms Onionoo short keys:
    • relay: n,f,a,rnickname,fingerprint,addresses,running
    • bridge: n,h,rnickname,hashed_fingerprint,running
  • For some bridge documents (/bandwidth, /clients, /uptime), Onionoo uses the key name fingerprint even though the value is a hashed fingerprint; this API exposes that as hashed_fingerprint.

Caching / 304 behavior

If the client includes If-Modified-Since, it will be forwarded upstream. If Onionoo replies with 304, this service will reply 304 too.

Configuration

Upstream / cache:

  • ONIONOO_BASE_URL (default: https://onionoo.torproject.org)
  • ONIONOO_TIMEOUT_SECONDS (default: 30)
  • DEFAULT_LIMIT (default: 100)
  • MAX_LIMIT (default: 200)
  • USER_AGENT
  • CACHE_MAXSIZE (default: 1024)
  • CACHE_DEFAULT_TTL_SECONDS (default: 300)
  • UPSTREAM_RETRY_ATTEMPTS (default: 2)

Observability / production hardening:

  • LOG_LEVEL (default: INFO)
  • LOG_FORMAT (json or console, default json)
  • METRICS_ENABLED (default: true) — exposes /metrics in Prometheus format
  • CORS_ALLOWED_ORIGINS (default: empty, CORS disabled). Example: ["https://example.com"]
  • RATE_LIMIT_ENABLED (default: false)
  • RATE_LIMIT_PER_MINUTE (default: 120)
  • HEALTHZ_READY_CACHE_SECONDS (default: 30)

Resource sizing

A single-worker container (the default uvicorn CMD in the Dockerfile) measured on Alpine 3.23 / Python 3.14 / aarch64 against the real Onionoo upstream:

Phase RSS Notes
Idle (just after start) ~75 MiB Python + FastAPI + Pydantic + httpx + fastapi-mcp + structlog + Prometheus instrumentator loaded; cache empty.
Typical agent traffic ~90 MiB After ~15 mixed /v1/* calls (details + aggregates), only a handful of distinct upstream payloads cached.
Cache near saturation ~180 MiB After 200 distinct /v1/details queries with fields= projection; cache holds ~200 entries.

From these measurements, each cached entry costs ~0.5 MiB on average when callers use the fields= projection. With the default CACHE_MAXSIZE=1024 that yields a ~500 MiB upper bound under realistic agent traffic.

If you expect callers to hit /v1/details without fields=, a single response can be several MiB (Onionoo returns ~10k full relay objects). A fully saturated cache of unfiltered details would then sit in the 1–5 GiB range — bound it by tuning CACHE_MAXSIZE down.

Suggested memory limits for docker run --memory / Kubernetes requests:

Deployment shape Memory request Memory limit
Personal / single-agent test 128 MiB 256 MiB
Hosted instance, mostly cached requests 256 MiB 512 MiB
Public instance, agents may issue unfiltered /details 512 MiB 1–2 GiB

CPU is light — a single worker handles 10s of QPS comfortably; scale with replicas if you need more throughput. (uvicorn ... --workers N is also an option, but each worker keeps its own in-memory cache; horizontal scaling via separate containers is usually a better fit.)

Health checks

  • GET /healthz — static liveness probe, never hits upstream.
  • GET /healthz/ready — pings Onionoo (summary?limit=1); 200 when reachable, 503 otherwise. Result is cached for HEALTHZ_READY_CACHE_SECONDS.

Request tracing

Every request is assigned an X-Request-ID. Clients may supply one to correlate across systems; the same value is echoed back on the response and bound into every log record produced during the request.

Metrics

/metrics exposes Prometheus-format counters / histograms, including:

  • onionoo_cache_hits_total, onionoo_cache_misses_total
  • onionoo_upstream_seconds{method=...} (histogram)
  • onionoo_upstream_errors_total{method=..., status=...}
  • Standard http_request_duration_seconds from the FastAPI instrumentator

Raw passthrough

For large payloads (/v1/details), pass ?raw=true to skip Pydantic re-validation and forward the upstream JSON verbatim. Trade-off: raw mode does not apply semantic key remapping (e.g. on /v1/summary you'll see n,f,a,r rather than nickname,fingerprint,addresses,running) and no _meta block is injected.

Response metadata (_meta)

Non-raw responses on /v1/* include a proxy-injected _meta block at the top of the envelope:

{
  "_meta": {
    "cache_age_seconds": 12.345,
    "upstream_last_modified": "Thu, 15 May 2026 12:00:00 GMT"
  },
  "version": "9.0",
  ...
}

cache_age_seconds = 0.0 means the response was just fetched from Onionoo. A non-zero value means the proxy served it from its in-memory cache.

Trimming payloads with fields=

All /v1/* endpoints accept ?fields=a,b,c. On /summary and /details Onionoo applies the projection at the upstream level; on history endpoints (bandwidth, weights, clients, uptime) Onionoo applies it where supported. Using it on large queries can shrink LLM input by an order of magnitude.

Use as an MCP server

This project ships an MCP server with two transports — pick whichever fits your client.

Tools

Task-oriented (recommended for agents)

  • find_relay(query) — free-form lookup; auto-detects fingerprint, AS, IP, or nickname
  • get_relay_health(fingerprint) — composite snapshot (details + uptime + bandwidth)
  • top_relays_by_bandwidth(country?, flag?, limit) — top-N by consensus weight
  • compare_relays(fingerprints) — parallel side-by-side details
  • country_summary(country) — running relay count, total bandwidth, flag distribution

Low-level pass-through (raw Onionoo endpoints)

  • onionoo_summary, onionoo_details, onionoo_bandwidth, onionoo_weights, onionoo_clients, onionoo_uptime — each takes a params dict matching the Onionoo query spec.

Aggregates

  • aggregate_relays(group_by="country"|"as"|"flag", running=True, top=N) — server-side group-by, sorted by relay count.

Streamable HTTP /mcp exposes the six low-level endpoints (get_summaryget_uptime) plus the three aggregate endpoints (aggregate_countries, aggregate_as, aggregate_flags). The task-oriented tools and the unified aggregate_relays live in the stdio server. Both transports can run side by side.

Streamable HTTP transport (recommended for hosted use)

Run the FastAPI app — /mcp is mounted automatically.

Inspect with MCP Inspector:

npx @modelcontextprotocol/inspector
# Transport: Streamable HTTP
# URL: http://localhost:8000/mcp

Claude Desktop / Cursor:

{
  "mcpServers": {
    "onionoo": {
      "type": "http",
      "url": "https://onionoo.anoni.net/mcp"
    }
  }
}

stdio transport (recommended for local agents)

uv sync installs an onionoo-mcp console script:

onionoo-mcp

Claude Desktop / Cursor:

{
  "mcpServers": {
    "onionoo": {
      "command": "uvx",
      "args": ["--from", "/path/to/onionoo-fastapi", "onionoo-mcp"]
    }
  }
}

Or, if the repo is checked out and you have uv:

{
  "mcpServers": {
    "onionoo": {
      "command": "uv",
      "args": ["--directory", "/path/to/onionoo-fastapi", "run", "onionoo-mcp"]
    }
  }
}

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

onionoo_fastapi-1.1.0.tar.gz (131.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

onionoo_fastapi-1.1.0-py3-none-any.whl (43.5 kB view details)

Uploaded Python 3

File details

Details for the file onionoo_fastapi-1.1.0.tar.gz.

File metadata

  • Download URL: onionoo_fastapi-1.1.0.tar.gz
  • Upload date:
  • Size: 131.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for onionoo_fastapi-1.1.0.tar.gz
Algorithm Hash digest
SHA256 b60344cb06ce0df9faf706db9e94ed510f381c82fafed4fdd1f2b6fc880fc8b8
MD5 1255b227d1ac2ce13863b828305ae011
BLAKE2b-256 14845d8c41de77d05f4e8cfddd8019b80e8e5dcbfbee96e73ac9c7b5d09b34ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for onionoo_fastapi-1.1.0.tar.gz:

Publisher: release.yml on anoni-net/onionoo-fastapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file onionoo_fastapi-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: onionoo_fastapi-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 43.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for onionoo_fastapi-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e28406718639370590e4f53394d4c4ff61eed03ab328d72b4c8188f365458c70
MD5 ec035e2c5bfa9f09f2d70254852e6f1b
BLAKE2b-256 4e372f7f7a2f1a67310fbc1d28897cdaebc97e8234d14bfe1c2eda5b73625ccc

See more details on using hashes here.

Provenance

The following attestation bundles were made for onionoo_fastapi-1.1.0-py3-none-any.whl:

Publisher: release.yml on anoni-net/onionoo-fastapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

1.2.0

2 files

This release

1.1.0 This release

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page