Skip to main content
GET
/
wallets
/
{walletId}
/
offers
List Offers
curl --request GET \
  --url https://api.dfns.io/wallets/{walletId}/offers \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "offer-3ugfu-o8duj-vqu770ckmg7ilhp4",
      "orgId": "or-30tnh-itmjs-s235s5ontr3r23h2",
      "walletId": "wa-5pfuu-9euek-h0odgb6snva8ph3k",
      "network": "Algorand",
      "kind": "Native",
      "metadata": {
        "asset": {
          "symbol": "<string>",
          "decimals": 123,
          "verified": true,
          "quotes": {
            "EUR": 123,
            "USD": 123
          }
        }
      },
      "txHash": "<string>",
      "status": "Pending",
      "from": "<string>",
      "to": "<string>",
      "value": "<string>",
      "timestamp": "2023-11-07T05:31:56Z",
      "expiresAt": "2023-11-07T05:31:56Z"
    }
  ],
  "nextPageToken": "<string>"
}

Authentication

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

Required Permissions

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

Wallet id.

Maximum length: 64

Query Parameters

limit
integer
default:50

Maximum number of items to return.

Required range: 1 <= x <= 500
paginationToken
string

Opaque token used to retrieve the next page. Returned as nextPageToken from the previous request.

Minimum length: 1

Response

200 - application/json

Success

items
object[]
required

Current page items.

nextPageToken
string

token to use as paginationToken to request the next page.

I