AIARCOASC Docs

OpenAPI explorer

Live OpenAPI 3.1 spec — browse, try requests, copy curl/Python/TS snippets.

What it is

The full machine-readable spec is at /openapi.yaml. The explorer below is generated from it; every endpoint includes copy-paste examples in curl, Python and TypeScript.

The explorer renders in the next iteration of this page. In the > meantime, point any OpenAPI-compatible tool (Postman, Insomnia, > openapi-generator) at https://docs.asc.aiarco.com/openapi.yaml.

Quickstart

curl https://docs.asc.aiarco.com/openapi.yaml > openapi.yaml
npx @redocly/cli lint openapi.yaml
import yaml, urllib.request
spec = yaml.safe_load(urllib.request.urlopen('https://docs.asc.aiarco.com/openapi.yaml'))
print(len(spec['paths']), 'endpoints')
import yaml from 'js-yaml';
const spec = yaml.load(await (await fetch('https://docs.asc.aiarco.com/openapi.yaml')).text());

Security

All access is authenticated and scoped. See Auth & scopes and Network controls.