---
title: "List pricing plans"
method: GET
path: "/v1/companies/{company_id}/pricing-plans"
tags: ["Pricing Plans"]
---

# List pricing plans

`GET /v1/companies/{company_id}/pricing-plans`

List all pricing plans for a company.
Currently the endpoint only returns the pricing plans for the EOR monthly product and the contractor products (Standard, Plus and COR).


## Scopes

| Category | Read only Scope | Write only Scope (read access implicit) |
|---|---|---|
| Manage companies (`company_management`) | View pricing plans (`pricing_plan:read`) | Manage pricing plans (`pricing_plan:write`) |

## Path parameters

- `company_id` string, uuid, required — Identifier of the employment being terminated.

## Response `200`

Success

- ListCompanyPricingPlansResponse — Company pricing plans
  - `data` object, required
    - `pricing_plans` PricingPlan[], required
      - `base_price` Price, required — A monetary amount with its currency, used for pricing plan costs.
        - `amount` integer, required — Amount in cents
        - `currency` CurrencyDefinition, required — Currency object without a UUID identifier
          - `code` string, required
          - `name` string, required
          - `symbol` string, required
      - `end_date` string, date, nullable, required — End date of the pricing plan this will be nil if the pricing plan is unlimited otherwise it will be the last day of the month
      - `id` string, required — The unique identifier (UUID) of the pricing plan.
      - `price` Price, required — A monetary amount with its currency, used for pricing plan costs.
        - `amount` integer, required — Amount in cents
        - `currency` CurrencyDefinition, required — Currency object without a UUID identifier
          - `code` string, required
          - `name` string, required
          - `symbol` string, required
      - `product` Product, required — A Remote product offering (e.g., EOR, Contractor Management) with its tier and billing frequency.
        - `description` string — A description of the product.
        - `features` string[] — Features included in this product tier.
        - `frequency` string, required — The billing frequency (e.g., "monthly", "annually").
        - `identifier` string — A unique machine-readable identifier for this product.
        - `name` string, required — The full product name (e.g., "EOR Monthly").
        - `short_name` string — A short display name for the product (e.g., "EOR").
        - `tier` string, required — The product tier (e.g., "standard", "premium").
      - `start_date` string, date, required — Start date of the pricing plan this will always be the first of the month, for example 2025-01-01 will be used if the user provided 2025-01-02
      - `type` string, required — The pricing plan type (e.g., "termed" for fixed-term, "evergreen" for ongoing).

## Other responses

- `401` — Unauthorized
- `404` — Not Found
- `422` — Unprocessable Entity

---

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