Skip to main content
GET
/
lists
/
:id
/
recipients
List Members
curl --request GET \
  --url https://api-prod.syntr.co/api/v1/email-marketing/lists/:id/recipients \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": {
    "recipients": [
      {
        "id": "rec-123",
        "email": "user@segment.com",
        "is_subscribed": true
      }
    ],
    "pagination": {
      "total": 450,
      "page": 1,
      "limit": 50,
      "pages": 9
    }
  }
}

URL Parameters

page
INTEGER
Page number
limit
INTEGER
Number of records per page
Search by email or name within the list
{
  "success": true,
  "data": {
    "recipients": [
      {
        "id": "rec-123",
        "email": "user@segment.com",
        "is_subscribed": true
      }
    ],
    "pagination": {
      "total": 450,
      "page": 1,
      "limit": 50,
      "pages": 9
    }
  }
}