This paginated endpoint will return a listing of the contacts that have been added to a given list. This endpoint returns 100 contacts per page.

GET /lists/LIST_ID/contacts/?page=PAGE_NUMBER
{
  "count": 1234,
  "next": "https://rj2.rejoiner.com/api/v2/SITE_ID/lists/LIST_ID/contacts/?page=2",
  "previous": null,
  "results": [
    {
      "customer": {
        "id": "CUSTOMER_ID",
        "email": "[email protected]",
        "first_name": "Test"
      },
      "custom_fields": {}
    },
    {
      "customer": {
        "id": "CUSTOMER_ID",
        "email": "[email protected]",
        "first_name": "Another"
      },
      "custom_fields": {}
    },
    ...
  ]
}