Skip to main content
GET
/
wallets
/
{walletId}
/
transfers
List Transfers
curl --request GET \
  --url https://api.dfns.io/wallets/{walletId}/transfers \
  --header 'Authorization: Bearer <token>'
{
  "walletId": "<string>",
  "items": [
    {
      "id": "<string>",
      "walletId": "<string>",
      "network": "Algorand",
      "requester": {
        "userId": "<string>",
        "tokenId": "<string>"
      },
      "requestBody": {
        "kind": "Native",
        "to": "<string>",
        "amount": "<string>",
        "memo": "<string>",
        "priority": "Slow",
        "createDestinationAccount": true,
        "offer": true,
        "expiresAt": "2023-11-07T05:31:56Z",
        "targetChain": "<string>",
        "externalId": "<string>",
        "travelRule": {
          "kind": "Notabene",
          "beneficiaryVASPdid": "<string>",
          "beneficiaryProof": {},
          "originator": {},
          "beneficiary": {}
        },
        "feeSponsorId": "<string>"
      },
      "metadata": {
        "asset": {
          "symbol": "<string>",
          "decimals": 123,
          "verified": true,
          "quotes": {
            "EUR": 123,
            "USD": 123
          }
        }
      },
      "status": "Pending",
      "reason": "<string>",
      "txHash": "<string>",
      "fee": "<string>",
      "dateRequested": "<string>",
      "datePolicyResolved": "<string>",
      "dateBroadcasted": "<string>",
      "dateConfirmed": "<string>",
      "approvalId": "<string>",
      "externalId": "<string>",
      "feeSponsorId": "<string>"
    }
  ],
  "nextPageToken": "<string>"
}

Authentication

✅ Organization User (CustomerEmployee)
✅ Delegated User (EndUser)
✅ Service Account

Required Permissions

Wallets:Transfers:Read: Always required.

Authorizations

Authorization
string
header
required

Bearer Token: Used to authenticate API requests. More details how to generate the token: Authentication flows

Path Parameters

walletId
string
required
Minimum length: 1

Query Parameters

limit
string
paginationToken
string
Minimum length: 1

Response

200 - application/json

Success

walletId
string
required
items
object[]
required
nextPageToken
string
I