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

MethodPathDescription
GET/value-typesList all value types
GET/value-types/:idSingle value type by ID or symbol
GET/value-types/:id/transfer-typesTransfer types that carry this value type

Transfer Types

MethodPathDescription
GET/transfer-typesList all transfer types
GET/transfer-types/:idSingle transfer type by ID or slug
GET/transfer-types/:id/value-typesValue types available on this transfer type

Prices

MethodPathDescription
GET/pricesReference prices for all value types
GET/prices/:value_typeSingle price by symbol or ID

Token List

MethodPathDescription
GET/tokenlist/brale.jsonAll value type deployments
GET/tokenlist/uniswap.jsonEVM-only deployments
GET/tokenlist/:transfer_typePer-transfer type list

LLM Context

MethodPathDescription
GET/llms/value-types.jsonValue types as structured AI context
GET/llms/transfer-types.jsonTransfer types as structured AI context
GET/llms/static-context.jsonComplete value layer 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 }