Skip to main content
PUT
/
v2
/
accounts
Add or remove accounts
curl --request PUT \
  --url https://api.range.org/v2/accounts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "operations": [
    {
      "action": "add",
      "account": {
        "name": "Treasury wallet",
        "network": "solana",
        "address": "BJE5MMbqXjVwjAF7oxwPYXnTXDyspzZyt4vwenNw5ruG",
        "tags": [
          "defi",
          "hot-wallet"
        ],
        "category": "Multisig",
        "group_ids": [
          "uuid-1"
        ]
      }
    },
    {
      "action": "remove",
      "account": {
        "network": "stellar",
        "address": "GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN"
      }
    }
  ]
}
'
{
  "acknowledged": true
}

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

Body

application/json
operations
object[]
required
Required array length: 1 - 1000 elements
Example:
[
{
"action": "add",
"account": {
"name": "Treasury wallet",
"network": "solana",
"address": "BJE5MMbqXjVwjAF7oxwPYXnTXDyspzZyt4vwenNw5ruG",
"tags": ["defi", "hot-wallet"],
"category": "Multisig",
"group_ids": ["uuid-1"]
}
},
{
"action": "remove",
"account": {
"network": "stellar",
"address": "GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN"
}
}
]

Response

200 - application/json
acknowledged
boolean
required
Example:

true

Last modified on May 15, 2026