Overview
Get a paginated list of all endpoints in your account. Endpoints are the unified routing system for webhooks, email forwarding, and email groups. Results are ordered by creation date (newest first).Authentication
Bearer token for API authentication. Format:
Bearer YOUR_API_KEY
Query Parameters
Maximum number of results to return. Range: 1-100.
Number of results to skip for pagination. Must be non-negative.
Filter by endpoint type. Valid values:
webhook
, email
, email_group
.Filter by active status. Pass
"true"
for active endpoints, "false"
for inactive. Must be string values, not boolean.Response
Response Fields
Array of endpoint objects matching the query parameters.
Pagination information for the results.
Examples
Basic Usage
Filtering by Type
Pagination
Error Responses
400 Bad Request
400 Bad Request
limit
parameter outside the 1-100 rangeoffset
parameter is negative- Invalid
type
parameter value
401 Unauthorized
401 Unauthorized
500 Internal Server Error
500 Internal Server Error
Endpoint Types
Webhook
Send email data to an external URL via HTTP POST
Email Forward
Forward emails to a single email address
Email Group
Forward emails to multiple email addresses (up to 50)
Documentation Verified - This endpoint documentation has been verified against the actual API implementation in
/api/v2/endpoints/route.ts
. All parameters, response fields, error codes, and behavior match the implementation.