List endpoints
GET /v1/endpoints
List all endpoints for the authenticated project. Supports cursor-based pagination.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ”Maximum number of results to return
Example
50Pagination cursor from previous response
Responses
Section titled “ Responses ”Endpoints retrieved successfully
Paginated list of endpoints. Uses EndpointSummary (omits headers, rate limits) for performance. Use GET /endpoints/:id for full details.
object
Summary endpoint info for list responses (omits headers for performance)
object
Unique endpoint identifier
Example
ep_550e8400e29b41d4a716446655440000Webhook delivery URL
Example
https://customer.app/webhooksOptional description
Example
Main production webhookWhether the endpoint is paused
When the endpoint was created
Example
2025-12-01T10:00:00Zobject
Unique identifier for this request (useful for support)
Example
req_xyz123Cursor for the next page of results (opaque, do not parse)
Example
{ "data": [ { "id": "ep_550e8400e29b41d4a716446655440000", "url": "https://customer.app/webhooks", "description": "Main production webhook", "created_at": "2025-12-01T10:00:00Z" } ], "meta": { "request_id": "req_xyz123", "next_cursor": null }}Unauthorized - Invalid or missing API key
object
object
Machine-readable error code
Example
INVALID_REQUESTHuman-readable error message
Example
endpoint must be a valid HTTPS URLobject
Unique identifier for this request (useful for support)
Example
req_xyz123Example
{ "error": { "code": "UNAUTHORIZED", "message": "Invalid or missing API key" }, "meta": { "request_id": "req_xyz123" }}Enter your credentials to populate code examples throughout the docs.