Skip to main content
GET
/
v1
/
wallets
/
{id}
Get wallet
curl --request GET \
  --url https://api.rem.money/v1/wallets/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "agentId": "<string>",
  "address": "<string>",
  "chain": "<string>",
  "balance": "<string>",
  "limits": {
    "perTx": "<string>",
    "daily": "<string>"
  },
  "allowlist": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200 - application/json

Wallet details

id
string
agentId
string
address
string
chain
string
balance
string
limits
object
allowlist
string[]