# List policies

> Returns active medical-necessity policies visible to the authenticated organization.

Source: [https://genhealth.ai/docs/api-reference/v1/policies/list-policies](https://genhealth.ai/docs/api-reference/v1/policies/list-policies)

## Endpoint

`GET /v1/policies`

## Authentication

Send a GenHealth credential in the `Authorization` header:

```http
Authorization: Bearer <YOUR_API_KEY>
Accept: application/json
```

Required scopes: `read:umpa`

## Parameters

| Name | Location | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `title` | query | string | No | Filter by policy title. |
| `publisher` | query | string | No | Filter by publisher name. |
| `publisher_id` | query | string | No | Filter by publisher identifier. |
| `policy_id` | query | string | No | Filter by policy identifier. |
| `page` | query | integer | No | Page number. Default: 1. |
| `limit` | query | integer | No | Records per page, capped at 100. Default: 20. |

## Request examples

### cURL

```curl
curl --request GET \
  --url 'https://api.umpa.genhealth.ai/v1/policies?page=1&limit=20' \
  --header 'Authorization: Bearer <YOUR_API_KEY>' \
  --header 'Accept: application/json'
```

### JavaScript

```javascript
const response = await fetch('https://api.umpa.genhealth.ai/v1/policies?page=1&limit=20', {
  method: 'GET',
  headers: {
    Authorization: 'Bearer <YOUR_API_KEY>',
    Accept: 'application/json',
  },
});

const data = await response.json();
```

### Python

```python
import requests

response = requests.get(
    'https://api.umpa.genhealth.ai/v1/policies?page=1&limit=20',
    headers={
        'Authorization': 'Bearer <YOUR_API_KEY>',
        'Accept': 'application/json',
    },
)

data = response.json()
```

## Responses

| Status | Description |
| --- | --- |
| 200 | A paginated collection of policies. |
| 401 | The bearer token is missing, invalid, or lacks the required scope. |
| 422 | One or more request values failed validation. |

### 200 response example

```json
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "title": "Example medical policy",
      "publisher": "Example health plan",
      "type": "string",
      "last_updated": "2026-08-05T14:45:00Z"
    }
  ],
  "pagination": {
    "currentPage": 1,
    "pageSize": 1,
    "totalPages": 1,
    "totalItems": 1,
    "next": 1,
    "previous": 1
  }
}
```

### 401 response example

```json
{
  "detail": "The request could not be completed."
}
```

### 422 response example

```json
{
  "detail": "The request could not be completed."
}
```
