List Destinations
Lists all destinations configured for your account. Results are paginated.
/destinationsThis endpoint retrieves all event destinations configured for your Stedi account. You can filter the results by destination status or event type.
Each destination in the response includes summary information such as the destination name, URL, subscribed event types, status, and the last delivery time. To retrieve full details for a specific destination, use the Retrieve Destination endpoint.
A Stedi API Key for authentication. Supports both test and production API keys.
Query Parameters
Number of items to return per page.
The nextPageToken value from a previous response. You can use this to get the next page of results. If not set, Stedi returns the first page of results.
The destination's current status. Stedi only sends event payloads to ENABLED destinations.
ENABLEDDISABLEDFilter results by event type. Visit event types for a complete list.
Response
The list of destination summaries.
Token that you can supply in subsequent requests to retrieve the next page of results. If not returned, there are no more results.
curl --request GET \ --url "https://events.us.stedi.com/2026-02-01/destinations" \ --header "Authorization: <api_key>"{
"items": [
{
"createdAt": "2026-02-01T12:00:00Z",
"description": "Receives enrollment notifications",
"destinationUrl": "https://example.com/webhooks",
"eventTypes": [
"enrollment.activated"
],
"id": "dst_550e8400-e29b-41d4-a716-446655440000",
"lastDeliveryTime": "2026-02-01T12:00:01Z",
"name": "My Destination",
"status": "ENABLED",
"updatedAt": "2026-02-01T12:00:00Z"
}
]
}