Skip to main content
GET
/
subscriber-lists
/
{id}
Retrieve a subscriber list
curl --request GET \
  --url https://{domain}/api/site/subscriber-lists/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 87647751,
  "name": "My list",
  "created": 1613384738,
  "subscribers": 25,
  "opens": 0.85,
  "clicks": 0.41
}

Authorizations

Authorization
string
header
required

Pass your API key as: Authorization: Bearer <API KEY>.

Path Parameters

id
integer
required

The id of the subscriber list.

Example:

87647751

Response

A single subscriber list.

id
integer

Unique list id.

Example:

87647751

name
string

List name.

Example:

"My list"

created
integer<int64>

Timestamp in Unix seconds since epoch.

Example:

1613384738

subscribers
integer

Total number of subscribers in this list.

Example:

25

opens
number

Open rate (0 to 1).

Example:

0.85

clicks
number

Click rate (0 to 1).

Example:

0.41

Last modified on June 20, 2026