Skip to main content
GET
/
api
/
v1
/
webhook-deliveries
/
event
/
{eventId}
Get webhook deliveries by event ID
curl --request GET \
  --url https://payments.coinbase.com/api/v1/webhook-deliveries/event/{eventId} \
  --header 'Authorization: <api-key>'
{
  "webhookDeliveries": [
    {
      "entity": "<string>",
      "id": "<string>",
      "webhookEventId": "<string>",
      "webhookId": "<string>",
      "statusCode": 123,
      "status": "WEBHOOK_DELIVERY_STATUS_DELIVERED",
      "lastResponse": "<string>",
      "deliveryDuration": 123,
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "limit": 123,
    "next": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Authorization header using the Bearer scheme. Learn more about JWT tokens in the Coinbase Developer Portal.

Path Parameters

eventId
string
required

The unique identifier of the webhook event.

Query Parameters

limit
integer<int32>

Limit

Maximum number of webhook deliveries to return. Default is 10, Max is 25.

next
string

Next

Next item to use for pagination.

Response

A successful response.

List of webhook deliveries.

webhookDeliveries
WebhookDelivery · object[]
required

List of webhook deliveries.

pagination
Pagination · object
required

Pagination information for the response.