Skip to content

List endpoints

GET
/v1/endpoints
curl --request GET \
--url 'https://api.hookbridge.io/v1/endpoints?limit=50' \
--header 'Authorization: Bearer <token>'

List all endpoints for the authenticated project. Supports cursor-based pagination.

limit
integer
default: 50 >= 1 <= 100

Maximum number of results to return

Example
50
cursor
string

Pagination cursor from previous response

Endpoints retrieved successfully

Media typeapplication/json

Paginated list of endpoints. Uses EndpointSummary (omits headers, rate limits) for performance. Use GET /endpoints/:id for full details.

object
data
Array<object>

Summary endpoint info for list responses (omits headers for performance)

object
id

Unique endpoint identifier

string
url

Webhook delivery URL

string format: uri
description

Optional description

string
paused

Whether the endpoint is paused

boolean
ephemeral

Whether this is an ephemeral (CI/test) endpoint

boolean
expires_at

When the ephemeral endpoint will auto-expire (only present for ephemeral endpoints)

string format: date-time
created_at

When the endpoint was created

string format: date-time
meta
object
request_id

Unique identifier for this request (useful for support)

string
next_cursor

Cursor for the next page of results (opaque, do not parse)

string
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

Media typeapplication/json
object
error
object
code

Machine-readable error code

string
message

Human-readable error message

string
meta
object
request_id

Unique identifier for this request (useful for support)

string
Example
{
"error": {
"code": "UNAUTHORIZED",
"message": "Invalid or missing API key"
},
"meta": {
"request_id": "req_xyz123"
}
}
Personalize Examples

Enter your credentials to populate code examples throughout the docs.