OpenAPI Endpoints
Download the OpenAPI specification
Postman Collection
Download the Postman collection
Base URL
Sandbox
Bron does not offer a separate sandbox environment. Instead, you can create a workspace in sandbox mode. This allows you to test and develop using both mainnet and testnet blockchain networks within the same API infrastructure.Testnet is only availaible in sandbox workspaces
Date and Time Format
All date and time values in the API are represented astimestamps in milliseconds since the Unix epoch
(January 1, 1970, 00:00:00 UTC).
Numeric Values Format
To avoid issues with floating-point precision—especially in financial or high-accuracy data — all numeric values are returned as strings.Response Codes
The API returns standard HTTP response codes to indicate the success or failure of an API request. Here are a few examples:Code | Description |
---|---|
200 OK | Request succeeded |
201 Created | Resource successfully created |
400 Bad Request | The request was invalid or malformed |
401 Unauthorized | Authentication failed or missing credentials |
403 Forbidden | Insufficient permissions |
404 Not Found | Resource doesn’t exist |
409 Conflict | Business logic conflict (e.g. duplicates, invalid state) |
429 Too Many Requests | Rate limit exceeded. Retry later |
500 Internal Server Error | Unexpected error on the server |