Skip to main content

Tiers

Manage membership tiers and pricing. Requires GHOST_ADMIN_API_KEY.

Tools

ToolDescription
admin_browse_tiersList all tiers
admin_read_tierGet a single tier by ID
admin_create_tierCreate a new tier
admin_update_tierUpdate an existing tier

admin_browse_tiers

List all membership tiers.

{
"limit": "all"
}

admin_read_tier

Get a single tier by ID.

{
"id": "6abc1234def5678901234567"
}

admin_create_tier

Create a new membership tier.

{
"name": "Premium",
"description": "Full access to all content",
"monthly_price": 500,
"yearly_price": 5000,
"currency": "usd"
}

Key parameters

ParameterTypeDescription
namestringTier name
descriptionstringTier description
monthly_pricenumberMonthly price in cents
yearly_pricenumberYearly price in cents
currencystringCurrency code (e.g., usd)
welcome_page_urlstringURL shown after signup
visibilitystringpublic or none

admin_update_tier

Update an existing tier.

{
"id": "6abc1234def5678901234567",
"name": "Premium Plus",
"monthly_price": 800
}