Skip to main content
The Buildmarkets API uses API key authentication. Every request must include a valid key pair. This page explains how authentication works, how to generate and manage keys, and security best practices.

How authentication works

Every Buildmarkets API request requires two HTTP headers:
Both values are required on every request. There is no session token or cookie mechanism — each request is independently authenticated. Example request:
The same key pair can alternatively be sent as HTTP Basic authAuthorization: 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:
  1. Send an email request to the Buildmarkets team at support@buildmarkets.ai or contact your designated Relationship Manager.
  2. In your request, include the following details:
    • Environment: Whether you need keys for sandbox (testing) or production (live).
    • Scopes: The specific permission scopes your integration requires (see API key scopes).
    • Label: A descriptive label for the key pair (e.g., sandbox-backend or prod-trading-engine).
  3. 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 the keys:manage scope:
Response:
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:
The response lists key metadata (ID, label, scopes, creation date) but never includes the secret value.

Revoking API keys

Revoke a key that is no longer needed or may be compromised:
Returns 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.