Skip to main content
organizationId
string
required
Unique identifier for the organization.
webhookEndpoints
array
required
Webhook endpoints owned by the organization.
curl --request POST \
  --url https://api.0xkey.io/public/v1/query/list_webhook_endpoints \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --header 'X-Stamp: <string> (see Authorizations)' \
  --data '{
    "organizationId": "<organization-id>"
  }'
{
  "webhookEndpoints": [
    {
      "endpointId": "<endpoint-id>",
      "organizationId": "<organization-id>",
      "url": "https://example.com/webhooks/0xkey",
      "name": "Production activity webhook",
      "isActive": true,
      "subscriptions": [
        {
          "eventType": "ACTIVITY_UPDATES",
          "filtersJson": "",
          "isActive": true
        }
      ]
    }
  ]
}