# Retrieve an Event Destination Retrieves the details of an event destination. ## Request ```curl curl -G https://api.stripe.com/v2/core/event_destinations/ed_test_61RM8ltWcTW4mbsxf16RJyfa2xSQLHJJh1sxm7H0KVT6 \ -H "Authorization: Bearer <>" \ -H "Stripe-Version: 2026-06-24.dahlia" \ -d "include[0]=webhook_endpoint.url" ``` ### Response ```json { "id": "ed_test_61RM8ltWcTW4mbsxf16RJyfa2xSQLHJJh1sxm7H0KVT6", "object": "v2.core.event_destination", "created": "2024-10-22T16:20:09.931Z", "description": "This is my event destination, I like it a lot", "enabled_events": [ "v1.billing.meter.error_report_triggered" ], "event_payload": "thin", "events_from": [ "@self" ], "livemode": false, "metadata": {}, "name": "My Event Destination", "snapshot_api_version": null, "status": "disabled", "status_details": { "disabled": { "reason": "user" } }, "type": "webhook_endpoint", "updated": "2024-10-22T16:22:02.524Z", "webhook_endpoint": { "signing_secret": null, "url": null } } ``` ## Parameters - `include` (array of enums, optional) Additional fields to include in the response. Possible enum values: - `webhook_endpoint.url` Include parameter to expose `webhook_endpoint.url`. ## Returns Returns an [Event Destination object](https://docs.stripe.com/api/v2/core/event-destinations/object.md). ## Error Codes | HTTP status code | Code | Description | | --- | --- | --- | | 404 | not_found | The resource wasn’t found. |