Brale Network API
The Network API enables you to view information about value types and transfer types tracked by our services.
Base URL
https://api.brale.network
No authentication required. All endpoints are free and open.
Endpoints
Value Types
Transfer Types
Prices
Token List
LLM Context
Examples
List all value types
curl https://api.brale.network/value-types
Get SBC and its transfer types
Returns SBC with every transfer type it's deployed on and each contract address.
curl https://api.brale.network/value-types/sbc
Which value types are on Base?
curl https://api.brale.network/transfer-types/base/value-types
Get the price of rUSD
curl https://api.brale.network/prices/rusd
Value types on Solana
Returns all value type deployments on Solana in Uniswap Token List format.
curl https://api.brale.network/tokenlist/solana
AI context for the full value layer
Structured context describing all value types, transfer types, and contract addresses. Feed this to an LLM.
curl https://api.brale.network/llms/static-context.json
Errors
All errors return the same shape:
{
"error": {
"code": "NOT_FOUND",
"message": "Value type 'xyz' not found"
},
"status": 404
}