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

# List events

`GET /events`

List events for the authenticated party, or for a delegated party if partyId is provided.

## Query parameters

- `partyId` string — Party ID to list events for (defaults to caller's party)
- `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' | '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' | 'approval.required' | 'approval.approved' | 'approval.denied' | 'approval.canceled' | 'payment_request.created' | 'payment_request.completed' | 'payment_request.canceled' | 'payment_request.declined' | 'payment_request.incoming' — Filter by event type
- `createdAfter` string, date-time — Return events created after this timestamp (ISO 8601)
- `createdBefore` string, date-time — Return events created before this timestamp (ISO 8601)
- `cursor` string — Cursor for keyset pagination
- `limit` integer — Max items per page (1-100)

## Headers

- `X-Agent-ID` string, nullable
- `X-Instance-ID` string, nullable

## Response `200`

Successful Response

- object
  - `data` object[], required
    - `type` 'event', required — Resource type
    - `id` string, required — Resource ID (evt_xxx)
    - `attributes` object, required — Resource attributes
      - `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' | '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' | 'approval.required' | 'approval.approved' | 'approval.denied' | 'approval.canceled' | 'payment_request.created' | 'payment_request.completed' | 'payment_request.canceled' | 'payment_request.declined' | 'payment_request.incoming', 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 — Creation timestamp (ISO 8601)
    - `relationships` object, required — Resource relationships
      - `party` object, required — Party that owns the event
        - `data` object, required — Related resource identifier
          - `type` 'party', required — Resource type
          - `id` string, required
  - `meta` object, required
    - `pagination` object, required
      - `hasMore` boolean, required
      - `nextCursor` string, nullable, required

## 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
- `428` — Precondition Required
- `429` — Too Many Requests
- `500` — Internal Server Error
- `501` — Not Implemented
- `502` — Bad Gateway
- `503` — Service Unavailable

---

[API](https://skmtc.dev/natural/apis/natural-api.md) · [All operations](https://skmtc.dev/natural/apis/natural-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/natural/natural-api/revisions/8cc2aed45847/schema)
