---
title: "List events"
method: GET
path: "/events"
tags: ["Events"]
---

# List events

`GET /events`

List events

## Query parameters

- `partyId` string — Defaults to your party. To act for another party, pass the ID of a party that has authorized you to act on its behalf.
- `eventType` 'party.updated' | 'compliance_case.updated' | 'wallet.created' | 'external_account.connected' | 'agent_delegation_invitation.created' | 'agent_delegation_invitation.accepted' | 'agent_delegation_invitation.declined' | 'agent_delegation_invitation.canceled' | 'agent_delegation.revoked' | 'delegation.activated' | 'delegation.revoked' | 'invitation_link.created' | 'invitation_link.revoked' | 'invitation_link.agent_added' | 'invitation_link.agent_removed' | 'invitation_link.redeemed' | 'deposit.created' | 'deposit.completed' | 'deposit.failed' | 'deposit.returned' | 'deposit.canceled' | 'deposit.approval_denied' | 'withdrawal.created' | 'withdrawal.completed' | 'withdrawal.failed' | 'withdrawal.returned' | 'withdrawal.canceled' | 'withdrawal.approval_denied' | 'payment.created' | 'payment.completed' | 'payment.failed' | 'payment.returned' | 'payment.canceled' | 'payment.approval_denied' | 'ach.created' | 'ach.processing' | 'ach.settled' | 'ach.failed' | 'ach.returned' | 'realtime.created' | 'realtime.processing' | 'realtime.settled' | 'realtime.failed' | 'external_party_account.validated' | 'approval.required' | 'approval.approved' | 'approval.denied' | 'approval.canceled' | 'payment_request.created' | 'payment_request.completed' | 'payment_request.canceled' | 'payment_request.declined' | 'payment_request.incoming' | 'mandate.created' | 'mandate.revoked' — Filter by event type. Required when partyId names another party.
- `createdAfter` string, date-time — Return events created after this timestamp.
- `createdBefore` string, date-time — Return events created before this timestamp.
- `cursor` string — Cursor from the previous page.
- `limit` integer — Maximum results per page.

## Headers

- `X-Instance-ID` string, nullable

## Response `200`

Successful Response

- object
  - `data` object[], required
    - `type` 'event', required
    - `id` string, required — Event ID (evt_*).
    - `attributes` object, required
      - `eventType` 'party.updated' | 'compliance_case.updated' | 'wallet.created' | 'external_account.connected' | 'agent_delegation_invitation.created' | 'agent_delegation_invitation.accepted' | 'agent_delegation_invitation.declined' | 'agent_delegation_invitation.canceled' | 'agent_delegation.revoked' | 'delegation.activated' | 'delegation.revoked' | 'invitation_link.created' | 'invitation_link.revoked' | 'invitation_link.agent_added' | 'invitation_link.agent_removed' | 'invitation_link.redeemed' | 'deposit.created' | 'deposit.completed' | 'deposit.failed' | 'deposit.returned' | 'deposit.canceled' | 'deposit.approval_denied' | 'withdrawal.created' | 'withdrawal.completed' | 'withdrawal.failed' | 'withdrawal.returned' | 'withdrawal.canceled' | 'withdrawal.approval_denied' | 'payment.created' | 'payment.completed' | 'payment.failed' | 'payment.returned' | 'payment.canceled' | 'payment.approval_denied' | 'ach.created' | 'ach.processing' | 'ach.settled' | 'ach.failed' | 'ach.returned' | 'realtime.created' | 'realtime.processing' | 'realtime.settled' | 'realtime.failed' | 'external_party_account.validated' | 'approval.required' | 'approval.approved' | 'approval.denied' | 'approval.canceled' | 'payment_request.created' | 'payment_request.completed' | 'payment_request.canceled' | 'payment_request.declined' | 'payment_request.incoming' | 'mandate.created' | 'mandate.revoked', required — Type of event.
      - `resourceId` string, required — ID of the resource that triggered the event.
      - `resourceType` string, required — Type of the resource (e.g. wallet, payment).
      - `payload` object, required — Event payload containing the resource snapshot. Additional keys may be added in the future.
        - `object` unknown
      - `createdAt` string, date-time, required — When this event was created.
    - `relationships` object, required
      - `party` object, required — Party that owns the event.
        - `data` object, required — Related resource identifier.
          - `type` 'party', required
          - `id` string, required
  - `meta` object, required
    - `pagination` object, required
      - `hasMore` boolean, required — Whether more results are available.
      - `nextCursor` string, nullable, required — Cursor for the next page, or null when there are no more results.

## Other responses

- `400` — Validation Error
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found. Returned when the resource does not exist, or when it exists but is not accessible to your account. The two cases are intentionally indistinguishable, so that resource IDs cannot be enumerated by probing.
- `409` — Conflict
- `422` — Validation Error. The response contains one error object for each invalid request value.
- `428` — Precondition Required
- `429` — Too Many Requests
- `500` — Internal Server Error
- `501` — Not Implemented
- `502` — Bad Gateway
- `503` — Service Unavailable

## Changes

- **2026-09-04** `3d0bfe344af2` — 4 warning, 4 info
  - added the new `realtime.created` enum value to the `data/items/attributes/eventType` response property for the response status `200`
  - added the new `realtime.failed` enum value to the `data/items/attributes/eventType` response property for the response status `200`
  - added the new `realtime.processing` enum value to the `data/items/attributes/eventType` response property for the response status `200`
  - added the new `realtime.settled` enum value to the `data/items/attributes/eventType` response property for the response status `200`
  - …4 more
- **2026-09-02** `c7c12da5915f` — 12 info
  - added the optional property `errors/items/meta/limitScope` to the response with the `400` status
  - added the optional property `errors/items/meta/limitScope` to the response with the `401` status
  - added the optional property `errors/items/meta/limitScope` to the response with the `403` status
  - added the optional property `errors/items/meta/limitScope` to the response with the `404` status
  - …8 more
- **2026-08-27** `359d267dca88` — 1 info
  - deleted the `header` request parameter `X-Agent-ID` with deprecation
- **2026-08-23** `b1ad79e918ac` — 1 info
  - `header` request parameter `X-Agent-ID` was deprecated
- …earlier changes not shown

[Full history](https://skmtc.dev/natural/apis/natural-api/changes/events/get.md)

---

[API](https://skmtc.dev/natural/apis/natural-api.md) · [All operations](https://skmtc.dev/natural/apis/natural-api/llms.txt) · [OpenAPI document](https://skmtc.dev/natural/apis/natural-api/revisions/1197c1fb1ef2?raw)
