Skip to main content
GET
/
v1
/
wallets
List wallets
curl --request GET \
  --url https://api.rem.money/v1/wallets \
  --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.

Response

200 - application/json

List of wallets

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