Overview
Tiers allow publishers to create multiple options for an audience to become paid subscribers. Each tier can have its own price points, benefits, and content access levels. Ghost connects tiers directly to the publication’s Stripe account.
The tier object
Whenever you fetch, create, or edit a tier, the API responds with an array of one or more tier objects.
By default, the API doesn’t return monthly/yearly prices or benefits. To include them in the response, use the include
parameter with any or all of the following values: monthly_price
, yearly_price
, benefits
.
Parameters
When retrieving tiers from the Admin API, it’s possible to use the include
and filter
parameters.
Available include values:
monthly_price
- include monthly price datayearly_price
- include yearly price databenefits
- include benefits data
Available filter values:
type:free|paid
- for filtering paid or free tiersvisibility:public|none
- for filtering tiers based on their visibilityactive:true|false
- for filtering active or archived tiers
For browse requests, it’s also possible to use limit
, page
, and order
parameters as documented in the Content API.
By default, tiers are ordered by ascending monthly price amounts.