Skip to main content
GET
/
webhooks
List webhooks
curl --request GET \
  --url https://api.proxyjam.com/public/v1/webhooks \
  --header 'X-API-Key: <api-key>'
{
  "items": [
    {}
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.proxyjam.com/llms.txt

Use this file to discover all available pages before exploring further.

Returns webhook endpoints for the current user. For now, only proxy.status_changed is supported.

Query parameters

limit
integer
Number of items to return. Default is 50, max is 100.
offset
integer
Number of items to skip before collecting the result set.

Response

items
array
List of webhook endpoint objects.
Each endpoint includes:
  • id
  • event_type
  • url
  • enabled
  • secret_preview
  • last_test_at
  • last_delivery_at
  • created_at
  • updated_at

Example

curl https://api.proxyjam.com/public/v1/webhooks \
  -H "X-API-Key: pj_AbCdEf..."