> For the complete documentation index, see [llms.txt](https://api.senderwiz.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api.senderwiz.com/customer/subscribers/get-confirmed-subscribers.md).

# Get Confirmed Subscribers

### ✅ Get Confirmed Subscribers

Fetch only confirmed subscribers in a list using list UID and optional pagination parameters.

***

#### 🔹 HTTP Request

```http
GET API-URL/lists/LIST-UNIQUE-ID/subscribers
```

***

#### 🔸 URL Segments

| Segment          | Required | Description                               |
| ---------------- | -------- | ----------------------------------------- |
| `LIST-UNIQUE-ID` | Yes      | Unique identifier of the subscriber list. |

***

#### 🔎 Query Parameters

| Parameter  | Default   | Description                         |
| ---------- | --------- | ----------------------------------- |
| `page`     | 1         | Page number to retrieve.            |
| `per_page` | 10        | Number of subscribers per page.     |
| `status`   | confirmed | Filters only confirmed subscribers. |

***

#### 🔐 Authorization Header

```
X-API-KEY: your-api-key-here
```

***

#### 💻 PHP Example

```php
// GET ALL ITEMS
$response = $endpoint->getConfirmedSubscribers('LIST-UNIQUE-ID', $pageNumber = 1, $perPage = 10);

// DISPLAY RESPONSE
echo '<pre>';
print_r($response->body);
echo '</pre>';
```

***

#### 📦 Sample JSON Response

```json
{
  "status": "success",
  "data": {
    "count": "3",
    "total_pages": 1,
    "current_page": 1,
    "next_page": null,
    "prev_page": null,
    "records": [
      {
        "subscriber_uid": "mk582trwqln90",
        "EMAIL": "zoe.anderson@newmailhub.com",
        "FNAME": "",
        "LNAME": "",
        "source": "import",
        "status": "confirmed",
        "ip_address": "",
        "date_added": "2025-04-16 13:42:10"
      },
      {
        "subscriber_uid": "hf790blsdeq33",
        "EMAIL": "liam.morris@uptoday.net",
        "FNAME": "",
        "LNAME": "",
        "source": "import",
        "status": "confirmed",
        "ip_address": "",
        "date_added": "2025-04-16 13:42:09"
      },
      {
        "subscriber_uid": "rt205cwnxke88",
        "EMAIL": "emma.bryant@fastcomm.io",
        "FNAME": "",
        "LNAME": "",
        "source": "import",
        "status": "confirmed",
        "ip_address": "",
        "date_added": "2025-04-16 13:42:07"
      }
    ]
  }
}
```
