> ## Documentation Index
> Fetch the complete documentation index at: https://rollout.mintlify.app/llms.txt
> Use this file to discover all available pages before exploring further.

# How to Search for Contacts (People)

You can quickly find contacts in Universal CRM by filtering on email, phone number, or tags using query parameters. All searches are performed with a simple GET request.

#### **Filter by Email (case-sensitive)**

```bash theme={null}
GET https://crm.universal.rollout.com/api/people?email=sarah.chen@northstarrealty.example
```

#### **Filter by Phone**

```bash theme={null}
GET https://crm.universal.rollout.com/api/people?phone=1234567890
```

#### **Filter by Tags (case-sensitive)**

```bash theme={null}
GET https://crm.universal.rollout.com/api/people?tags=buyer
```

**Notes:**

* Email and tag filters are case-sensitive.

* You can combine filters as needed, for example:

  ```bash theme={null}
  GET /api/people?email=sarah.chen@northstarrealty.example&tags=buyer
  ```

* The response will include all people matching the filter criteria.
