> 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/search-by-email-in-all-lists.md).

# Search by Email in All Lists

### 🌐 Search by Email in All Lists

Locate a subscriber across all your lists using their email address.

***

#### 🔹 HTTP Request

```http
GET API-URL/lists/subscribers/search-by-email-in-all-lists
```

***

#### 🔎 Query Parameters

| Parameter | Required | Description                      |
| --------- | -------- | -------------------------------- |
| `email`   | Yes      | Email address of the subscriber. |

***

#### 🔐 Authorization Header

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

***

#### 💻 PHP Example

```php
// SEARCH BY EMAIL IN ALL LISTS
$response = $endpoint->emailSearchAllLists('lena.morris@demomail.io');

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

***

#### 📦 Sample JSON Response

```json
{
  "status": "success",
  "data": {
    "records": [
      {
        "subscriber_uid": "xy987tuvrkl55",
        "email": "lena.morris@demomail.io",
        "status": "confirmed",
        "source": "import",
        "ip_address": "",
        "list": {
          "list_uid": "ab321xwzqp888",
          "display_name": "Spring Launch List",
          "name": "Spring Launch 2025"
        },
        "date_added": "2025-04-15 10:42:30"
      }
    ],
    "count": 1,
    "current_page": 1,
    "next_page": null,
    "prev_page": null,
    "total_pages": 1
  }
}

```
