Overview
Authentication
All `/v1/*` endpoints are authenticated with a user API key.
Bearer Token
Pass the API key in the `Authorization` header. `/health` and `/openapi.json` do not require authentication.
Authorization: Bearer <USER_API_KEY> Validation
-
Start with a read endpoint
`GET /v1/account/balance` is the safest endpoint for validating a key.
-
Use idempotency for orders
When retrying order creation, reuse the same `Idempotency-Key`.