Brale Network API
The Network API enables you to view information about value types and transfer types tracked by our services.
Getting Started
The Brale Network API is free and open — no API keys, no signup, no authentication. Choose how you want to integrate:
Option 1: curl / HTTP
Start querying immediately from any language or tool:
Option 2: MCP (AI Agents)
Point your MCP client (Claude, ChatGPT, Cursor) at the server:
Option 3: CLI
Query from the command line with zero setup:
Option 4: OpenAPI SDK Generation
Generate a typed client in any language from the OpenAPI 3.1 spec:
Pricing
No signup required for the Free tier — start using the API immediately. For premium access or enterprise needs, contact [email protected]. Full pricing details: /pricing.md.
Base URL
No authentication required. All endpoints are free and open.
Endpoints
Value Types
Transfer Types
Prices
Token List
LLM Context
Examples
List all value types
Get SBC and its transfer types
Returns SBC with every transfer type it's deployed on and each contract address.
Which value types are on Base?
Get the price of rUSD
Value types on Solana
Returns all value type deployments on Solana in Uniswap Token List format.
AI context for the full value layer
Structured context describing all value types, transfer types, and contract addresses. Feed this to an LLM.
Error Handling
All errors return a consistent JSON structure:
Error Codes
Rate Limits
Every response includes rate limit headers. The default limit is 120 requests per minute per IP address.
When rate limited, back off for the number of seconds in the Retry-After header. Do not retry immediately — exponential backoff is recommended.
For AI Agents
The Brale Network API is designed to be consumed by AI agents without any authentication barrier. There are no API keys, OAuth tokens, or session cookies. Every endpoint is open and free.
MCP Server
An MCP (Model Context Protocol) server is available at https://brale.network/api/mcp. It supports the Streamable HTTP transport and exposes all API endpoints as callable tools. Point your MCP client (Claude, ChatGPT, Cursor) to https://brale.network/api/mcp.
OpenAPI Spec
A machine-readable OpenAPI 3.1.0 specification is available at https://brale.network/api/openapi.json. Use it with function-calling LLMs, code generators, or SDK builders.
Content Negotiation
All explorer pages support Accept: text/markdown content negotiation. Agents that prefer markdown over HTML can request structured markdown from any page:
Discovery Files
Error Recovery for Agents
All errors return structured JSON with a code field. Agents should:
- On
NOT_FOUND(404): Check the ID/symbol. Use/value-type/listto enumerate valid IDs. - On
RATE_LIMITED(429): Wait forRetry-Afterseconds, then retry. - On
INTERNAL_ERROR(500): Retry once after 2-5 seconds. If persistent, the service may be temporarily unavailable.