OpenAPI Reference

Complete OpenAPI 3.1.0 specification for the Dual Platform API with 70 paths and 100 operations.

Complete OpenAPI 3.1.0 specification for the Dual Platform API. Use it to generate client SDKs, explore endpoints interactively, or import into your favorite API tool.

70 Paths · 100 Operations · 14 Tags · Spec Version 3.1.0

Authentication Schemes

BearerAuth, JWT token in Authorization header. Used by most endpoints.

Code
Authorization: Bearer <token>

ApiKeyAuth, API key in x-api-key header. For server-to-server integrations.

Code
x-api-key: <api-key>

API Tags

Generate Client SDKs

Use the OpenAPI spec with any code generator to create typed clients in your language of choice.

TypeScript

bash
npx @openapitools/openapi-generator-cli generate -i openapi.json -g typescript-fetch -o ./sdk

Python

bash
npx @openapitools/openapi-generator-cli generate -i openapi.json -g python -o ./sdk-python

Go

bash
npx @openapitools/openapi-generator-cli generate -i openapi.json -g go -o ./sdk-go

Java

bash
npx @openapitools/openapi-generator-cli generate -i openapi.json -g java -o ./sdk-java