Skip to main content
GET
/
beta
/
evm
/
subscriptions
/
webhooks
/
{webhookId}
/
addresses
Get webhook addresses
curl --request GET \
  --url https://api.sim.dune.com/beta/evm/subscriptions/webhooks/{webhookId}/addresses \
  --header 'X-Sim-Api-Key: <x-sim-api-key>'
{
  "addresses": [
    "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
    "0x3f60008Dfd0EfC03F476D9B489D6C5B13B3eBF2C"
  ]
}
Returns a paginated list of all wallet addresses that are currently subscribed to the specified webhook. This is useful for:
  • Auditing which addresses are being monitored
  • Verifying address subscriptions
  • Exporting your subscription list

Pagination

This endpoint uses cursor-based pagination. Use the limit parameter to control page size, and pass the next_offset value from the response as the offset parameter to retrieve the next page.
If you’re managing a large number of addresses (hundreds or thousands), use pagination to efficiently retrieve the complete list.

Headers

X-Sim-Api-Key
string
required

Used for authenticating requests. Provide an API key with a purpose of Sim API. See Authentication.

Path Parameters

webhookId
string<uuid>
required

The unique identifier of the webhook.

Query Parameters

limit
integer
default:100

Number of results to return. Defaults to 100.

offset
string

The offset to paginate through result sets.

Response

A list of addresses.

addresses
string[]

EVM address.

next_offset
string

Cursor for pagination.