AEVION API explorer
Interactive tools for the AEVION Hub API. 37 modules, one taxonomy, three export formats. Build queries by clicking, then copy the URL, curl command or SDK snippet straight into your code.
Catalog explorer
Build queries against /api/aevion/catalog with chip filters (status, kind, tag, projection, format). Live response preview, copyable URL + curl + TypeScript SDK snippet.
Open catalog explorer →Badge builder
Pick modules from a searchable checklist → copy ready-made Markdown or HTML embedding shields.io-style SVG badges that auto-update with module status.
Open badge builder →Health dashboard
Live per-service latency sparklines across the AEVION fleet — a dev-focused complement to /status with response-time history and error counters.
Open health dashboard →OpenAPI inspector
Aggregate API index across 19 modules and 30 services. Browse endpoints grouped by tag, inspect operations, copy paths into your client of choice.
Open OpenAPI inspector →Sitemap viewer
Parsed urlset rendered with priority bars and group-by toggles (path, changefreq, month). Quick way to audit indexable coverage end-to-end.
Open sitemap viewer →Version + SDKs
Backend uptime, release SHA, build timestamp and the catalogue of published TypeScript clients — one place to verify what's deployed and what's installable.
Open version + SDKs →SDK playground
Live demo of every @aevion-io/catalog-client method via dropdown. Pick a method, see the request, the response and the exact TypeScript snippet to copy.
Open SDK playground →Module graph
SVG force-directed visualisation of tag-overlap (Jaccard) similarity. Drag nodes, hover edges, see which modules cluster around shared concepts.
Open module graph →Module diff
Side-by-side compare two modules — field-by-field equality plus tag-Jaccard overlap. Spot drift, audit parity, document the deltas in one screen.
Open module diff →Module search
Live full-text search across name, code, description and tags with a relevance score per hit. Type to filter the catalogue in real time.
Open module search →API surface
TypeScript SDK
Zero-dependency client for the Hub API. Strict types, optional fetch injection, four runnable examples shipped alongside the package source.
import { AevionCatalog } from "@aevion-io/catalog-client";
const cat = new AevionCatalog();
const { items } = await cat.list({ status: "mvp" });
const qsign = await cat.get("qsign");
const stats = await cat.stats();