Skip to main content
GET
/
webhooks
List webhooks
curl --request GET \
  --url https://api.natural.co/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "type": "webhook",
      "id": "whk_0192abc1def2789034567890abcdef12",
      "attributes": {
        "url": "https://example.com/webhooks/natural",
        "description": "Production webhook for wallet and party events",
        "status": "ENABLED",
        "enabledEvents": [
          "wallet.created",
          "party.updated",
          "party.delegation_granted"
        ],
        "tags": {
          "env": "prod",
          "team": "payments"
        },
        "createdAt": "2026-03-16T12:00:00Z",
        "updatedAt": "2026-03-16T12:00:00Z"
      },
      "relationships": {
        "party": {
          "data": {
            "type": "party",
            "id": "pty_7c9e6679e29b41d4a716446655440001"
          }
        }
      }
    },
    {
      "type": "webhook",
      "id": "whk_0192def4abc1789034567890abcdef34",
      "attributes": {
        "url": "https://example.com/webhooks/funding",
        "description": "External account notifications",
        "status": "DISABLED",
        "enabledEvents": [
          "external_account.connected"
        ],
        "tags": {
          "env": "sandbox"
        },
        "createdAt": "2026-03-10T09:00:00Z",
        "updatedAt": "2026-03-14T18:30:00Z"
      },
      "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

Query Parameters

status
enum<string>

Filter by status

Available options:
ENABLED,
DISABLED
cursor
string

Cursor for keyset pagination

limit
integer
default:50

Max items per page (1-100)

Required range: 1 <= x <= 100

Response

Successful Response

data
WebhookResource · object[]
required
meta
object
required