Skip to main content
The Blend API provides programmatic access to vault information, strategy data, and Safe operations. All documented endpoints are public and do not require authentication.

Base URL

https://api.blend.money

Quick Start

Get available strategies for a specific integration:
  • cURL
  • JavaScript
  • Python
curl "https://api.blend.money/strategy/available?integration=USX"
Get current TVL across all integrations:
  • cURL
  • JavaScript
  • Python
curl "https://api.blend.money/vault/tvl/global"

Interactive Playground

Try the API endpoints directly in your browser using our interactive playground. All endpoints are documented with examples and can be tested without authentication.
The playground is automatically generated from our OpenAPI specification and includes examples in cURL, JavaScript, and Python.

Available Endpoints

The API provides the following endpoint categories:
  • Safe Operations - Request Safe deployment, resolve addresses, check balances and yields
  • Strategy Data - Query available strategies and integrations across all supported chains
  • Vault Information - Access TVL data for specific integrations or globally

Response Format

All API responses follow a consistent JSON format:
{
  "status": "success",
  "data": { ... },
  "message": "Optional message"
}
Error responses include:
{
  "status": "error",
  "message": "Error description",
  "code": "ERROR_CODE"
}

Rate Limiting

  • Rate Limit: 100 requests per minute per IP
  • Headers: Rate limit information is included in response headers
  • Retry: Use exponential backoff for rate-limited requests

Supported Chains

  • Base (8453)
  • Botanix (3637)
  • Scroll (534352)
  • Arbitrum (42161)
  • Polygon (137)
  • Ethereum (1)
  • HyperEVM (999)