Returns one contact. `:subscriber` is an id or email. Permission: `subscribers`.

## Path Parameters

| Name | Type | Description |
| ---- | ---- | ----------- |
| `subscriber` | string | **Required.** Subscriber id or email. |

## Response Fields

| Field | Type | Description |
| ----- | ---- | ----------- |
| `id` | string | Subscriber id. |
| `email` | string | Email address. |
| `name` | string or null | Display name. |
| `phone` | string or null | Phone number. |
| `status` | string | Current status. |
| `createdAt` | string | ISO 8601 created timestamp. |
| `updatedAt` | string | ISO 8601 updated timestamp. |
| `tags` | `{ id, name }[]` | Attached tags. |
| `fields` | `{ name, value }[]` | Custom fields. |

## Errors

| Status | `name` | When |
| ------ | ------ | ---- |
| 401 | `missing_api_key` | Missing or invalid bearer token |
| 403 | `missing_permission` | Token lacks the `subscribers` permission |
| 404 | `not_found` | Unknown id or email |

## Related

- [Update Subscriber](/docs/api-reference/v2/subscribers-update)
- [List Subscribers](/docs/api-reference/v2/subscribers-list)
- [SDK: lumail.subscribers.get](/docs/sdk/v2/subscribers-get)


## API Reference
**Method:** GET
**Endpoint:** /api/v2/subscribers/:subscriber

### SDK
```ts
import { Lumail } from "lumail";

const lumail = new Lumail({ apiKey: process.env.LUMAIL_API_KEY });
const { data, error } = await lumail.subscribers.get("user@example.com");
if (error) {
  throw error;
}
console.log(data.id, data.status);
```

### cURL
```bash
curl https://lumail.io/api/v2/subscribers/user@example.com \
  -H "Authorization: Bearer YOUR_API_TOKEN"
```

### JavaScript
```javascript
const response = await fetch(
  "https://lumail.io/api/v2/subscribers/user@example.com",
  {
    headers: {
      Authorization: "Bearer YOUR_API_TOKEN",
    },
  },
);
const data = await response.json();
```

### Success Response
```json
{
  "id": "sub_abc123",
  "email": "user@example.com",
  "name": "Ada",
  "phone": null,
  "status": "SUBSCRIBED",
  "createdAt": "2026-09-05T10:30:00.000Z",
  "updatedAt": "2026-09-05T10:30:00.000Z",
  "tags": [{ "id": "tag_abc123", "name": "newsletter" }],
  "fields": [{ "name": "plan", "value": "pro" }]
}
```

### Error Response
```json
{
  "name": "not_found",
  "message": "Subscriber not found",
  "statusCode": 404
}
```
