Saki Docs
Subscription

Get subscription details

Returns the current plan, usage limits, trial status, and cancellation state.

Base URLhttps://app.usesaki.com/api
get/subscription

Get subscription details

Returns the current plan, usage limits, trial status, and cancellation state.

AuthorizationBearer <token>

Response

curl -X GET "https://app.usesaki.com/api/subscription" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "plan": "string",
  "is_gifted": true,
  "limits": {
    "max_spaces": 2,
    "max_posts_per_month": 20,
    "has_analytics": true,
    "remaining_spaces": 0,
    "remaining_posts": 0,
    "posts_this_month": 0
  },
  "trial": {
    "on_trial": "string",
    "ends_at": "string"
  },
  "cancelled": "string",
  "ends_at": "string"
}