Skip to main content
The secret is not included in list responses. It’s only shown when creating or rotating.
GET
/
v1
/
webhooks
/
endpoints
List webhook endpoints
curl --request GET \
  --url https://api.peepal.dev/v1/webhooks/endpoints \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "url": "<string>",
      "events": [
        "job.created"
      ],
      "enabled": true,
      "description": "<string>",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "next_cursor": "<string>"
}
Retrieve a paginated list of all webhook endpoints in your project.
curl -X GET "https://api.peepal.dev/v1/webhooks/endpoints?limit=25" \
  -H "x-api-key: YOUR_API_KEY"
{
  "data": [
    {
      "id": "wh_01ARZ3NDEKTSV4RRFFQ69G5FAV",
      "url": "https://your-app.com/webhooks/peepal",
      "events": ["job.completed", "job.failed"],
      "enabled": true,
      "description": "Production webhook endpoint",
      "created_at": "2025-12-31T10:00:00Z"
    }
  ],
  "next_cursor": null
}

Authorizations

x-api-key
string
header
required

Query Parameters

limit
integer
default:25
Required range: 1 <= x <= 100
cursor
string

Response

Paginated webhook endpoints

data
object[]
required
next_cursor
string | null
required