Try the API Playground
- Navigate to any endpoint page (e.g., Create Chat)
- Click Try it in the request panel
- Enter your Bearer token
- 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:
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/...
| Version | Status |
|---|
| v1 | Current, stable |
Breaking changes are communicated via email and changelog updates before release.