Skip to main content
GET
/
v2
/
accounts
/
{id}
Get account by address
curl --request GET \
  --url https://api.range.org/v2/accounts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "bje5mmbqxjvwjaf7oxwpyxntxdyspzZyt4vwennw5rug",
  "name": "Treasury wallet",
  "type": "eoa",
  "tags": [
    "defi",
    "hot-wallet"
  ],
  "provider": "ledger, kraken, wallet, ...",
  "groups": [
    {
      "id": "uuid-1",
      "name": "Finance"
    }
  ],
  "status": "active",
  "balances": [
    {
      "asset": "USDC",
      "amount": "100.50",
      "updated_at": "2024-01-01T00:00:00.000Z",
      "usd": "100.50"
    }
  ],
  "details": {
    "network": "solana",
    "address": "BJE5MMbqXjVwjAF7oxwPYXnTXDyspzZyt4vwenNw5ruG",
    "funded_by": {
      "sender": "<string>",
      "tx_hash": "<string>",
      "tx_time": "<string>"
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.range.org/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use Authorization: Bearer

Path Parameters

id
string
required

Response

200 - application/json
id
string
required
Example:

"bje5mmbqxjvwjaf7oxwpyxntxdyspzZyt4vwennw5rug"

name
string
required
Example:

"Treasury wallet"

type
enum<string>
required
Available options:
eoa,
multisig,
contract,
custodian,
exchange,
bank
Example:

"eoa"

tags
string[]
required
Example:
["defi", "hot-wallet"]
provider
string
required
Example:

"ledger, kraken, wallet, ..."

groups
object[]
required
Example:
[{ "id": "uuid-1", "name": "Finance" }]
status
enum<string>
required
Available options:
active,
updating
Example:

"active"

balances
object[]
required
details
object
Last modified on May 15, 2026