← Developers
Catalog API explorer
Build a query against GET /api/aevion/catalog by clicking filters. Response updates live. Copy the URL, curl command or SDK snippet.
URL
/api-backend/api/aevion/catalog?status=mvp%2Claunched
curl
curl -s '/api-backend/api/aevion/catalog?status=mvp%2Claunched' | jq .
@aevion-io/catalog-client
import { AevionCatalog } from "@aevion-io/catalog-client";
const cat = new AevionCatalog();
const { items } = await cat.list({
status: ["mvp", "launched"],
});Response
Truncated after 30kb. Open full response for raw payload.
Tip
The
fields projection lets you slim payloads dramatically — ask for just id,name,frontend for a homepage tile-list. CSV is RFC 4180-compliant. Markdown is GitHub-flavoured.