Bron API enables secure and flexible integration with your applications, allowing you to interact programmatically with the Bron platform. Below, you’ll find the base URLs, data format conventions, and key technical details to help you get started quickly.

Base URL

https://api.bron.org

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 as timestamps in milliseconds since the Unix epoch (January 1, 1970, 00:00:00 UTC).
{
  "transactionType": "buy",
  "createdAt": "1749147409708"
}

Numeric Values Format

To avoid issues with floating-point precision—especially in financial or high-accuracy data — all numeric values are returned as strings.
{
  "includeFee": "false",
  "amount": "0.00013417",
  "status": "new"
}

Response Codes

The API returns standard HTTP response codes to indicate the success or failure of an API request. Here are a few examples:
CodeDescription
200 OKRequest succeeded
201 CreatedResource successfully created
400 Bad RequestThe request was invalid or malformed
401 UnauthorizedAuthentication failed or missing credentials
403 ForbiddenInsufficient permissions
404 Not FoundResource doesn’t exist
409 ConflictBusiness logic conflict (e.g. duplicates, invalid state)
429 Too Many RequestsRate limit exceeded. Retry later
500 Internal Server ErrorUnexpected error on the server