> 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-unconfirmed-subscribers.md).

# Get Unconfirmed Subscribers

### ⏳ Get Unconfirmed Subscribers

Fetch subscribers who have not yet confirmed their subscription within a given list.

***

#### 🔹 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`   | unconfirmed | Filters only unconfirmed subscribers. |

***

#### 🔐 Authorization Header

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

***

#### 💻 PHP Example

```php
// GET ALL ITEMS
$response = $endpoint->getUnconfirmedSubscribers('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": "gx382plmbqn21",
        "EMAIL": "grace.foster@demo.com",
        "FNAME": "",
        "LNAME": "",
        "source": "import",
        "status": "unconfirmed",
        "ip_address": "",
        "date_added": "2025-04-17 10:22:14"
      },
      {
        "subscriber_uid": "rk502uyetwl92",
        "EMAIL": "jack.miller@abc.org",
        "FNAME": "",
        "LNAME": "",
        "source": "import",
        "status": "unconfirmed",
        "ip_address": "",
        "date_added": "2025-04-17 10:22:10"
      },
      {
        "subscriber_uid": "nv817dxwszo65",
        "EMAIL": "lucy.davis@domain.com",
        "FNAME": "",
        "LNAME": "",
        "source": "import",
        "status": "unconfirmed",
        "ip_address": "",
        "date_added": "2025-04-17 10:22:06"
      }
    ]
  }
}
```
