GET
/
v1
/
webhooks
List webhooks
curl --request GET \
  --url https://api.cdp.coinbase.com/platform/v1/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "582307c2f9e1fac308a5f575",
      "network_id": "base-sepolia",
      "event_type": "erc20_transfer",
      "event_type_filter": {
        "addresses": [
          "<string>"
        ],
        "wallet_id": "d91d652b-d020-48d4-bf19-5c5eb5e280c7"
      },
      "event_filters": [
        {
          "contract_address": "0xfc807D1bE4997e5C7B33E4d8D57e60c5b0f02B1a",
          "from_address": "0xfc807D1bE4997e5C7B33E4d8D57e60c5b0f02B1a",
          "to_address": "0xfc807D1bE4997e5C7B33E4d8D57e60c5b0f02B1a"
        }
      ],
      "notification_uri": "https://webhook.site/582307c2f9e1fac308a5f575",
      "created_at": "2024-07-21T17:32:28Z",
      "updated_at": "2024-07-21T17:32:28Z",
      "signature_header": "your-signature-header",
      "status": "active"
    }
  ],
  "has_more": true,
  "next_page": "QnR4RE4wV3h3SVVGMUxxOHF3Vk0zdzpNakF5TlMwd01pMHdObFF5TWpveE1Eb3pORm89"
}

Authorizations

Authorization
string
header
required

Enter your JSON Web Token (JWT) here. Refer to the Generate JWT section of our Authentication docs for information on how to generate your Bearer Token.

Query Parameters

limit
integer

A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

page
string

A cursor for pagination across multiple pages of results. Don't include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

Maximum length: 5000

Response

The list of webhooks

data
object[]
required
has_more
boolean

True if this list has another page of items after this one that can be fetched.

Example:

true

next_page
string

A token which can be provided as page token to retrieve the next page. If this field is omitted, there are no additional pages.

Example:

"QnR4RE4wV3h3SVVGMUxxOHF3Vk0zdzpNakF5TlMwd01pMHdObFF5TWpveE1Eb3pORm89"