GET
/
api
/
v1
/
wallets
List wallets
curl --request GET \
  --url https://secureapi.dyrectpay.com/api/v1/wallets \
  --header 'x-api-key: <api-key>' \
  --header 'x-signature: <api-key>' \
  --header 'x-timestamp: <api-key>'
{
  "status": "success",
  "message": "Success",
  "data": [
    {
      "_id": "wallet_id",
      "address": "tb1qexampleaddress",
      "chainType": "btc",
      "status": "active",
      "subscribedChains": [
        "bitcoin"
      ],
      "usage": "crypto_to_cash",
      "provider": "tatum"
    },
    {
      "_id": "wallet_id",
      "address": "0xexampleaddress",
      "chainType": "evm",
      "status": "active",
      "subscribedChains": [
        "binance",
        "ethereum",
        "polygon"
      ],
      "usage": "crypto_to_cash",
      "provider": "tatum"
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key issued to your integration.

x-timestamp
string
header
required

Request timestamp used for signature verification.

x-signature
string
header
required

Request signature generated by your backend.

Response

Successful response.

status
string
Example:

"success"

message
string
Example:

"success"

data
any | null

Endpoint-specific response payload.