GET /api/v1/openapi.yaml
This OpenAPI spec as YAML
Returns the hand-maintained spec as application/yaml. FastAPI internally serves only /openapi.json; this route provides the stable YAML variant.
Parameters
This endpoint takes no parameters.
Code samples
curl "https://infranode.dev/api/v1/openapi.yaml"const res = await fetch("https://infranode.dev/api/v1/openapi.yaml");
const data = await res.json();
console.log(data);import httpx
res = httpx.get("https://infranode.dev/api/v1/openapi.yaml")
res.raise_for_status()
print(res.json()) Try it
No live console is available for this endpoint. It is an operational or demo operation (for example a forced error or key mint) and is only documented here. Use the code samples above to call it directly.