Skip to main content
GET
/
wallets
/
{walletId}
/
transactions
List Transactions
curl --request GET \
  --url https://api.dfns.io/wallets/{walletId}/transactions \
  --header 'Authorization: Bearer <token>'
{
  "walletId": "<string>",
  "items": [
    {
      "id": "<string>",
      "walletId": "<string>",
      "network": "Algorand",
      "requester": {
        "userId": "<string>",
        "tokenId": "<string>"
      },
      "requestBody": {
        "kind": "Transaction",
        "transaction": "<string>",
        "externalId": "<string>"
      },
      "status": "Pending",
      "reason": "<string>",
      "txHash": "<string>",
      "fee": "<string>",
      "approvalId": "<string>",
      "dateRequested": "<string>",
      "datePolicyResolved": "<string>",
      "dateBroadcasted": "<string>",
      "dateConfirmed": "<string>",
      "externalId": "<string>"
    }
  ],
  "nextPageToken": "<string>"
}

Authentication

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

Required Permissions

Wallets:Transactions: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