---
title: "Get the list of custom filters (for the logged API user's account)"
description: "GET /filters — Returns the account's saved contact filters, each with its name and the conditions that define it — the filter definitions themselves, not the contacts they match."
canonical_url: https://developer.onepagecrm.com/api/reference/filters/get-filters/
source: Markdown mirror of https://developer.onepagecrm.com/api/reference/filters/get-filters/
---

`GET /filters`

Returns the account's saved contact filters, each with its name and the conditions that define it — the filter definitions themselves, not the contacts they match. To get matching contacts, use GET /contacts/filters/{filter_id}.

Resource: [Filters](https://developer.onepagecrm.com/api/reference/filters/) · [API Reference](https://developer.onepagecrm.com/api/reference/)

## Request

```bash
curl "https://app.onepagecrm.com/api/v3/filters" \
  -u $user_id:$api_key
```

Authentication is HTTP Basic — `user_id` as username, `api_key` as password.
See https://developer.onepagecrm.com/api/authentication/.

## Query parameters

| Name | Type | Description |
| --- | --- | --- |
| `page` | integer | Page number. Starts from 1. Default is 1. |
| `per_page` | integer | Number of records to return. Maximum 100 allowed. Default is 10. |

## Responses

### 200

OK

```json
{
  "status": 0,
  "message": "OK",
  "timestamp": 1528373119,
  "data": {
    "filters": [
      {
        "filter": {
          "id": "5b606e239007ba1e528d9557",
          "name": "Jane's large deals",
          "conditions": [
            [
              "deal_owner_id",
              "is",
              "5aba31e99007ba0f570c12f7"
            ],
            [
              "deal_value",
              "greater",
              "1000"
            ]
          ]
        }
      }
    ],
    "total_count": 1,
    "page": 1,
    "per_page": 10,
    "max_page": 1
  }
}
```

Standard error responses: 400, 401, 403, 404, 409, 500 — shared across the API. See https://developer.onepagecrm.com/api/errors/.

## Related guides

- [Authentication](https://developer.onepagecrm.com/api/authentication/)
- [Errors](https://developer.onepagecrm.com/api/errors/)
- [Rate limits](https://developer.onepagecrm.com/api/rate-limits/)
- [Pagination](https://developer.onepagecrm.com/api/pagination/)
