---
title: "Get a tier"
method: GET
path: "/subscriptions/tiers/{id}"
tags: ["Subscriptions"]
---

# Get a tier

`GET /subscriptions/tiers/{id}`

Returns the specified product tier with its features and pricing.
            
Use this endpoint to retrieve tier information when only an id is available.

## Path parameters

- `id` string, uuid, required

## Response `200`

When request is successful. Returns a 'Tier' object.

- Tier
  - `id` string, uuid — Unique identifier of the tier.
  - `href` string, nullable
  - `relation` string, nullable
  - `method` string, nullable
  - `self` Link
    - `id` string, nullable
    - `href` string, nullable
    - `relation` string, nullable
    - `method` string, nullable
  - `smokeballId` string, nullable — Unique Smokeball identifier of the tier. This identifier convenience purposes only and should not be used to interact with the subscriptions API.
  - `productSuite` string, nullable — The product suite that this tier belongs to.
  - `name` string, nullable — The display name of the tier.
  - `description` string, nullable — The description of the tier. Can be used to describe the tier to a customer.
  - `trialPeriodDays` integer, nullable — The number of days the tier can be trialed for. Cannot be trialed if zero or missing.
  - `prices` Price[], nullable — The price options for the tier.
    - `id` string, nullable — The internal price id.
    - `externalPriceId` string, nullable — The external price id.
    - `default` boolean — Returns `true` if the price is the default price.
    - `active` boolean — Returns `true` if the Price is active.
    - `type` string — The type of price.
    - `name` string, nullable — The price display name.
    - `amount` number, double, nullable — The per unit amount for this pricing option for the specified interval (in cents).
    - `interval` string — Recurring payment interval type.
  - `createdDate` string, date-time — The created date of the tier.
  - `updatedDate` string, date-time — The updated date of the tier.

## Other responses

- `404` — When tier with specified id does not exist.
- `500` — Internal server error occurred while retrieving the tier

---

[API](https://skmtc.net/smokeball/apis/api.md) · [All operations](https://skmtc.net/smokeball/apis/api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/smokeball/api/versions/197984da9b42/schema)
