Skip to main content
GET
/
v1
/
webhooks
/
feed
/
{uid}
/
addresses
Get Addresses Subscribed To Feed Webhook
curl --request GET \
  --url https://api.clicker.xyz/v1/webhooks/feed/{uid}/addresses
{
  "walletAddresses": [
    "0xa4e221aa5a7ba51b5d5c7d5c923bfb9bcebcb252"
  ],
  "links": {
    "previous": "<string>",
    "next": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

uid
string
required

Query Parameters

before
string

Cursor for fetching the previous page: pass an address, and the next page will be transactions before this address.

after
string

Cursor for fetching the next page: pass an address, and the next page will be transactions after this address.

inclusive
boolean

If set, the response will include the address with the before/after cursor. Otherwise, exclude the cursor from results. (Do not set it to false! Only set to true, or don’t define it.)

Response

200

walletAddresses
string[]
required

A list of addresses subscribed to the webhook.

The address / public key