Skip to main content
The subscription resource embeds up to 200 addresses inline in its filters.addresses array. When a subscription exceeds that limit, filters.hasMore is true and you use this endpoint to page through the full list using an opaque cursor token.

Request

Path parameters

string
required
The subscription ID (e.g. sub_2QkP9aB7xN...).

Query parameters

integer
Number of addresses to return per page. Must be between 1 and 200. Defaults to 50.
string
Opaque cursor returned by the previous response. Pass this value verbatim to fetch the next page. Omit or leave empty to start from the beginning.

Response

200 OK — a paginated list of address objects.
array
The address objects on this page. Each item has a chainId (CAIP-2 identifier, e.g. tron:mainnet) and an address (base58check-encoded TRON address).
string | null
Cursor for the next page. Pass this as the nextPageToken query parameter on your next request. null when you have reached the last page.

Errors