Skip to main content

Your First API Call

Let’s list your counterparties in three simple steps:
1

Get Your API Key

Sign in at app.range.org and generate an API key from the dashboard. Keep it secure, treat it like a password.
2

Make Your First Request

List all counterparties in your workspace:
3

Explore the Response

You’ll receive a paginated list of counterparties with their addresses, bank accounts, and metadata.

API Fundamentals

Base URL

All API requests are made to:

Authentication

Include your API key in the X-API-KEY header with every request:
Never expose your API key in client-side code or public repositories. Use environment variables to store it securely.

Get Your API Key

Generate and manage API keys from the Range dashboard

Request Format

All endpoints use GET, POST, PATCH, PUT, or DELETE methods with:
  • Query parameters for filtering and pagination (GET endpoints)
  • JSON request bodies for creates and updates (Content-Type: application/json)
  • Multipart form data for document uploads
  • JSON responses for all successful requests

Response Format

Successful responses return JSON directly. List endpoints include a meta object:

Pagination

The Platform API uses cursor-based pagination for all list endpoints. Example, fetch the next page:
Use meta.next_cursor to advance forward. When next_cursor is null, you’ve reached the last page.
Cursors are opaque strings, do not parse or construct them manually. Always use the cursor value returned in the response.

Common Use Cases

Create a Counterparty

Add vendors, customers, and partners with crypto addresses and bank details POST /v2/counterparties

Search Accounts

Find and filter your workspace accounts by type, network, or group GET /v2/accounts

Connect an Exchange

Link a Kraken, Coinbase, or Hyperliquid account to sync balances POST /v2/account-connections

Query Transactions

Fetch canonical transfer and trade history across all connected accounts GET /v2/account-connections/transactions

Error Handling

The API uses standard HTTP status codes: Error Response Format:
Implement retry logic with exponential backoff for 429 and 5xx errors.

Next Steps

Explore Endpoints

Browse all available endpoints with interactive examples below

Platform Overview

Learn what you can build with the Platform API

Data API

Query blockchain addresses, networks, and stablecoin analytics

Get Support

Questions? Our team is here to help
Last modified on June 17, 2026