---
title: "List subscriptions"
method: GET
path: "/api/v1/subscriptions"
tags: ["Subscriptions"]
---

# List subscriptions

`GET /api/v1/subscriptions`

List subscriptions with optional filtering by customer or plan.

## Query parameters

- `customer_id` string
- `plan_id` string, MeteroidId
- `statuses` SubscriptionStatusEnum[]
- `page` integer
- `per_page` integer

## Response `200`

List of subscriptions

- SubscriptionListResponse
  - `data` Subscription[], required
    - `activated_at` string, date-time, nullable — When the subscription was activated (first payment or activation condition met)
    - `auto_advance_invoices` boolean, required — If false, invoices will stay in Draft until manually reviewed and finalized. Default to true.
    - `billing_day_anchor` integer, required
    - `billing_start_date` string, date, nullable — When billing started (after any trial period)
    - `charge_automatically` boolean, required — Automatically try to charge the customer's configured payment method on finalize.
    - `created_at` string, date-time, required — When the subscription was created
    - `currency` 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYN' | 'BZD' | 'CAD' | 'CDF' | 'CHF' | 'CLP' | 'CNH' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRU' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SOS' | 'SRD' | 'SSP' | 'STD' | 'STN' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'UYU' | 'UZS' | 'VES' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMW' | 'ZWL', required
    - `current_period_end` string, date, nullable — Current billing period end date
    - `current_period_start` string, date, required — Current billing period start date
    - `customer_alias` string, nullable
    - `customer_id` string, MeteroidId, required
    - `customer_name` string, required
    - `end_date` string, date, nullable — When the subscription ends (if set)
    - `id` string, MeteroidId, required
    - `invoice_memo` string, nullable — Default memo for invoices
    - `mrr_cents` integer, required — Monthly recurring revenue in cents
    - `net_terms` integer, required — Payment terms in days (0 = due on issue)
    - `period` 'MONTHLY' | 'QUARTERLY' | 'SEMIANNUAL' | 'ANNUAL', required
    - `plan_description` string, nullable
    - `plan_id` string, MeteroidId, required
    - `plan_name` string, required
    - `plan_version` integer, required
    - `plan_version_id` string, MeteroidId, required
    - `purchase_order` string, nullable
    - `start_date` string, date, required — When the subscription contract starts (benefits apply from this date)
    - `status` 'PENDING_ACTIVATION' | 'PENDING_CHARGE' | 'TRIAL_ACTIVE' | 'ACTIVE' | 'TRIAL_EXPIRED' | 'PAUSED' | 'SUSPENDED' | 'CANCELLED' | 'COMPLETED' | 'SUPERSEDED' | 'ERRORED', required
    - `trial_duration` integer, nullable — Trial duration in days
  - `pagination_meta` PaginationResponse, required
    - `page` integer, required
    - `per_page` integer, required
    - `total_items` integer, required
    - `total_pages` integer, required

## Other responses

- `401` — Unauthorized
- `500` — Internal error

## Changes

- **2026-01-21** (v1) `9fba45d198be` — 2 info
  - api tag `Subscriptions` added
  - api tag `Subscription` removed
- **2026-01-20** (v1) `665f680338b5` — 2 info
  - api tag `Subscription` added
  - api tag `subscription` removed
- **2025-12-17** (v1) `2244ec0dabe3` — 2 breaking, 1 warning, 15 info
  - for the `query` request parameter `page`, the type/format was changed from `integer`/`` to `integer`/`int32`
  - for the `query` request parameter `per_page`, the type/format was changed from `integer`/`` to `integer`/`int32`
  - deleted the `query` request parameter `status`
  - added the new optional `query` request parameter `statuses`
  - …14 more
- **2025-12-02** (v1) `f3aab0fcd63f` — 1 warning, 1 info
  - added the new `ERRORED` enum value to the `data/items/status` response property for the response status `200`
  - added the enum value `ERRORED` to the property `items/` of the `query` request parameter `status`
- **2025-10-16** (v1) `a174f46ee4f8` — 2 info
  - added the required property `data/items/auto_advance_invoices` to the response with the `200` status
  - added the required property `data/items/charge_automatically` to the response with the `200` status

[Full history](https://skmtc.dev/meteroid-oss/apis/meteroid/changes/api/v1/subscriptions/get.md)

---

[API](https://skmtc.dev/meteroid-oss/apis/meteroid.md) · [All operations](https://skmtc.dev/meteroid-oss/apis/meteroid/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/meteroid-oss/meteroid/revisions/44bcc86fb202/schema)
