Skip to main content
GET
/
transactions
List transactions
curl --request GET \
  --url https://api.natural.co/transactions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "type": "transaction",
      "id": "txn_550e8400e29b41d4a716446655440000",
      "attributes": {
        "amount": 100000,
        "currency": "USD",
        "status": "COMPLETED",
        "escalationId": null,
        "disputeId": null,
        "description": "Invoice payment",
        "memo": null,
        "createdAt": "2026-01-04T15:30:00Z",
        "updatedAt": "2026-01-04T15:31:00Z",
        "isDelegated": false,
        "customerName": null,
        "customerAgentId": null,
        "senderName": "Acme Corp",
        "recipientName": "Vendor LLC",
        "transactionType": "payment",
        "category": "sent",
        "direction": "OUTBOUND"
      },
      "relationships": {
        "sourceParty": {
          "data": {
            "type": "party",
            "id": "pty_7c9e6679e29b41d4a716446655440001"
          }
        },
        "destinationParty": {
          "data": {
            "type": "party",
            "id": "pty_7c9e6679e29b41d4a716446655440002"
          }
        },
        "sourceWallet": {
          "data": {
            "type": "wallet",
            "id": "wal_550e8400e29b41d4a716446655440000"
          }
        },
        "destinationWallet": {
          "data": null
        }
      }
    }
  ],
  "meta": {
    "pagination": {
      "hasMore": false,
      "nextCursor": null
    }
  }
}

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

Query Parameters

type
enum<string>
default:all
Available options:
payment,
transfer,
all
limit
integer
default:50

Results per page

Required range: 1 <= x <= 100
cursor
string

Pagination cursor from previous response

Response

Successful Response

data
TransactionResource · object[]
required
meta
object
required