Skip to main content

Try the API Playground

  1. Navigate to any endpoint page (e.g., Create Chat)
  2. Click Try it in the request panel
  3. Enter your Bearer token
  4. Modify parameters and send the request
The playground makes real API requests. Use a test model to avoid consuming production credits.

Download OpenAPI Specification

The OpenAPI spec is auto-generated from our codebase and always reflects the latest API:
FormatURL
OpenAPI 3.1 (JSON)api.cuadra.ai/v1/openapi.json

Generate Client Libraries

Use OpenAPI Generator to create type-safe clients in any language:
pip install openapi-generator-cli
openapi-generator generate \
  -i https://api.cuadra.ai/v1/openapi.json \
  -g python \
  -o ./cuadra-client \
  --additional-properties=packageName=cuadra

API Versioning

The API version is included in the base URL:
https://api.cuadra.ai/v1/...
VersionStatus
v1Current, stable
Breaking changes are communicated via email and changelog updates before release.