---
title: "Policy List"
method: GET
path: "/v1/agency/policy"
tags: ["Policy"]
---

# Policy List

`GET /v1/agency/policy`

Return the bound policies of an agency, most recently updated first.

Quotes are not included — use the Quote List endpoint for those. Each entry carries the
`policy_id` to retrieve the full policy with. When more policies are available, `next_url`
holds the path of the next page; keep following it until it is no longer returned.

## Query parameters

- `limit` integer — Number of policies to return per page
- `starting_after` string, nullable — Return the policies that follow this cursor. Take it from `next_url` rather than building it.
- `term_start_date_gte` string, date, nullable — Only return policies whose term starts on or after this date.
- `term_start_date_lte` string, date, nullable — Only return policies whose term starts on or before this date.
- `producing_agent_email` string, nullable — Only return policies produced by this agent.

## Response `200`

Successful Response

- BoundPolicyListPage
  - `policies` BoundPolicyListEntry[], required
    - `policy_id` string, required
    - `public_policy_id` string, required
    - `status` 'issued' | 'cancelled' | 'voided', required — Status of a policy that has been bound. `voided` is a policy cancelled back to its start date, as if it had never been in force.
    - `term_start_date` string, date, required
    - `expiration_date` string, date, required
    - `primary_insured_name` string, nullable
    - `property_addresses` string[] — Insured properties
    - `producing_agent_email` string, nullable
    - `updated_at` string, date-time, nullable
  - `limit` integer, required
  - `next_url` string, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/steadily/apis/steadily-partner-api.md) · [All operations](https://skmtc.net/steadily/apis/steadily-partner-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/steadily/steadily-partner-api/revisions/2fbfe2df0cf8/schema)
