Skip to main content
GET
/
v1
/
accounts
/
{account_id}
/
wallets
List Registered Wallets
curl --request GET \
  --url https://sandbox.api.rime.finance/v1/accounts/{account_id}/wallets \
  --header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "999e0123-e89b-12d3-a456-426614174004",
"account_id": "123e4567-e89b-12d3-a456-426614174000",
"chain": "polygon",
"wallet_address": "0x1234567890abcdef1234567890abcdef12345678",
"is_primary": true
},
{
"id": "000e1234-e89b-12d3-a456-426614174005",
"account_id": "123e4567-e89b-12d3-a456-426614174000",
"chain": "polygon",
"wallet_address": "0xabcdef1234567890abcdef1234567890abcdef12",
"is_primary": false
}
]
}

Authorizations

Authorization
string
header
required

Bearer access token. Provide as a Authorization: Bearer <token> header.

Path Parameters

account_id
string<uuid>
required

Query Parameters

wallet_address
string | null

Filter for wallet registrations with a specific wallet address.

is_primary
boolean | null
skip
integer
default:0
Required range: x >= 0
limit
integer
default:100
Required range: 1 <= x <= 1000

Response

200 - application/json

Registered wallets retrieved successfully

data
WalletSchema · object[]
required
I