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

# List Subscriptions

`GET /subscriptions/`

## Query parameters

- `account` string

## Response `200`

Successful Response

- Subscription[]
  - `id` string, uuid, required — The unique ID of this subscription
  - `owner` AccountPublic, required
    - `id` string, required
    - `account_type` string, required
    - `name` string, required
    - `display_name` string
    - `description` string
    - `picture_url` string — https://robohash.org/ladybugbot
  - `external_id` string — The ID of this subscription
  - `type` 'cloud' | 'rhino-plugin' | 'revit-plugin' | 'bundled-plugin' | 'application' | 'seat' | 'cloud-compute', required — An enumeration.
  - `period_start` string, date-time, required — The start of the current subscription period
  - `period_end` string, date-time, required — The end of the current subscription period
  - `plan_slug` string, required — The slug of the plan used to create this subscription
  - `plan_multiplier` integer — The number of times to multiply the plan limit by
  - `billing_info` BillingInfo
    - `user_email` string, required — The email used for billing on this subscription
    - `update_url` string, required — The url to update the billing info
    - `cancel_url` string, required — The url to cancel the subscription
    - `signup_date` string, date-time, required — The date the subscription was created
    - `payment_information` PaymentMethod, required
      - `payment_method` 'card' | 'paypal' | 'PayPal', required — An enumeration.
      - `card_type` 'master' | 'mastercard' | 'visa' | 'american_express' | 'discover' | 'jcb' | 'maestro' | 'diners_club' | 'unknown' | 'union_pay' — An enumeration.
      - `last_four_digits` string
      - `expiry_date` string
    - `last_payment` SubscriptionPayment, required
      - `date` string, date, required
      - `currency` string, required
      - `amount` number, required
    - `next_payment` SubscriptionPayment
      - `date` string, date, required
      - `currency` string, required
      - `amount` number, required
    - `paused_at` string, date-time — The date the subscription was paused
    - `paused_from` string, date-time — The date the subscription will be paused from
    - `paused_reason` 'voluntary' | 'delinquent' — An enumeration.

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/pollination/apis/pollination-server.md) · [All operations](https://skmtc.net/pollination/apis/pollination-server/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pollination/pollination-server/revisions/c1f3c6d96b31/schema)
