OpenAPI / Swagger
Qevron also publishes its entire API as a machine-readable OpenAPI specification. This lets you try it interactively or generate client code.
Swagger UI
Access the interactive UI from your browser:
https://app.qevron.ai/swagger/There you can see every endpoint, inspect parameters, and use "Try it out" to send requests directly (by entering your API key).
Raw OpenAPI document
Download the JSON spec directly:
https://app.qevron.ai/doc.jsonYou can use this file for:
- Client code generation — Python, Go, TypeScript, etc. clients with
openapi-generator. - Postman / Insomnia — Import the document to build a collection.
- API explorer tools — Visualize the schema.
Example: client generation
bash
# A TypeScript client with OpenAPI Generator
npx @openapitools/openapi-generator-cli generate \
-i https://app.qevron.ai/doc.json \
-g typescript-axios \
-o ./qevron-clientTIP
For most use cases, the official openai SDK + a base_url change is the most practical path (see OpenAI Compatibility). The OpenAPI spec is there for custom clients or automation needs.