How authentication works
Every Buildmarkets API request requires two HTTP headers:Authorization: Basic base64(api_key:api_secret):
Note: Authorization: Bearer <token> is reserved for user-facing OAuth/JWT flows (e.g., the CLI’s device login). Passing an API key as a Bearer token is not supported.
API key scopes
When generating an API key, you assign it one or more scopes that control which endpoints it can access. This follows the principle of least privilege.Important: “Assign only the scopes your application needs. A compromised key with narrow scopes limits your exposure.”
Requesting API keys
Via email request
Buildmarkets API keys are provisioned and distributed via email. To request a new API key pair:- Send an email request to the Buildmarkets team at support@buildmarkets.ai or contact your designated Relationship Manager.
- In your request, include the following details:
- Environment: Whether you need keys for
sandbox(testing) orproduction(live). - Scopes: The specific permission scopes your integration requires (see API key scopes).
- Label: A descriptive label for the key pair (e.g.,
sandbox-backendorprod-trading-engine).
- Environment: Whether you need keys for
- Key requests are processed in regular batches. Once generated, your API key pair will be securely transmitted to your registered technical contact via encrypted email.
Via the API
You can also generate keys programmatically using an existing key that has thekeys:manage scope:
Security note: “The api_secret is only returned once at creation time. Store it immediately in a secrets manager (e.g., AWS Secrets Manager, HashiCorp Vault). It cannot be retrieved again — if lost, revoke the key and generate a new one.”
Listing API keys
Retrieve all keys associated with your partner account:Revoking API keys
Revoke a key that is no longer needed or may be compromised:204 No Content on success. Revoked keys are immediately invalidated — any in-flight requests using the revoked key will fail with 401 Unauthorized.
Security best practices
Error responses
See Error Codes for the full list of API error responses.