Skip to main content
GET
Get webhook addresses
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.

Authorizations

X-Sim-Api-Key
string
header
required

API key for authentication. Obtain your key from the Dune dashboard at sim.dune.com.

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.