Skip to main content
GET
/
wallets
List wallets
curl --request GET \
  --url https://api.natural.co/wallets \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "type": "wallet",
      "id": "wal_550e8400e29b41d4a716446655440000",
      "attributes": {
        "status": "active",
        "balance": {
          "available": 120000,
          "total": 125000,
          "currency": "USD"
        },
        "claims": {
          "amount": 125000,
          "count": 2
        },
        "depositInstructions": {
          "routingNumber": "021000021",
          "accountNumber": "1234567890",
          "bankName": "Bridge Financial"
        }
      },
      "relationships": {
        "party": {
          "data": {
            "type": "party",
            "id": "pty_7c9e6679e29b41d4a716446655440001"
          }
        }
      }
    }
  ],
  "meta": {
    "pagination": {
      "hasMore": false,
      "nextCursor": null
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.natural.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Agent-ID
string | null

Agent ID (agt_xxx) identifying which agent is making the request.

X-Instance-ID
string | null

Required when X-Agent-ID is present. Session or conversation ID for agent observability.

Maximum string length: 1024

Response

Successful Response

data
WalletResource · object[]
required
meta
WalletListMeta · object
required