---
title: "List Customers Route"
method: GET
path: "/api/v1/customers"
tags: ["customers"]
---

# List Customers Route

`GET /api/v1/customers`

## Query parameters

- `health` string[], nullable
- `lifecycle_stage` string, nullable
- `plan_tier` string, nullable
- `plan_name` string, nullable
- `billing_status` string, nullable — paying | subscriber | cancelled
- `search` string, nullable
- `sort` string
- `sort_dir` string
- `min_churn_risk` number, nullable
- `max_churn_risk` number, nullable
- `min_actions` integer, nullable
- `signup_after` string, nullable — YYYY-MM-DD, inclusive
- `signup_before` string, nullable — YYYY-MM-DD, inclusive
- `facet` string, nullable
- `facet_value` string, nullable
- `min_confidence` number, nullable
- `paginate` string — offset | cursor
- `cursor` string, nullable
- `limit` integer
- `ph_keys` string[], nullable — PostHog property keys to include
- `page` integer — Page number
- `per_page` integer — Items per page

## Headers

- `authorization` string, nullable — Bearer <token>

## Response `200`

Successful Response

- PaginatedEnvelopeCustomerListResponse
  - `data` CustomerListResponse[], required
    - `id` string, uuid, required
    - `name` string, required
    - `email` string, required
    - `avatar_url` string, nullable
    - `plan_tier` string, nullable
    - `plan_name` string, nullable
    - `mrr_cents` integer
    - `revenue_30d_cents` integer
    - `signup_date` string, date, nullable
    - `last_seen_at` string, date-time, nullable
    - `health` string, required
    - `churn_risk` number, required
    - `churn_risk_computed_at` string, date-time, nullable
    - `lifecycle_stage` string, required
    - `source` string, nullable
    - `primary_channel` string, nullable
    - `actions_30d` integer
    - `activity_14d` integer[], nullable
    - `last_activity_event` string, nullable
    - `last_activity_at` string, date-time, nullable
    - `signal` string, nullable
    - `bug_report_count` integer
    - `enrichment_data` object, nullable
    - `enriched_at` string, date-time, nullable
    - `posthog_properties` object, nullable
    - `posthog_location` string, nullable
    - `stripe_data` object, nullable
    - `revenuecat_data` object, nullable
  - `meta` PaginationMeta, required
    - `total` integer, required
    - `page` integer, required
    - `per_page` integer, required
    - `pages` integer, required
    - `next_cursor` string, nullable
    - `has_more` boolean
    - `safe_count` integer, nullable
    - `opened_count` integer, nullable
    - `returned_count` integer, nullable
    - `request_id` string
    - `timestamp` string, date-time

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/minro/apis/minro-cs-platform.md) · [All operations](https://skmtc.dev/minro/apis/minro-cs-platform/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/minro/minro-cs-platform/revisions/eb854265cf29/schema)
