Skip to main content
GET
/
subscription
/
plans
Get Available Plans
curl --request GET \
  --url https://api.d1g.qzz.io/api/v1/subscription/plans \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "id": "free",
      "name": "<string>",
      "description": "<string>",
      "priceMonthly": 123,
      "priceYearly": 123,
      "maxVideoUploads": 123,
      "maxTiktokProfiles": 123,
      "maxScheduledPosts": 123,
      "hasApiAccess": true,
      "hasAnalytics": true,
      "hasScheduling": true
    }
  ]
}

Authorizations

Authorization
string
header
required

Use JWT token (from Supabase auth) or API key (format: sk_live_...)

Response

200 - application/json

Plans retrieved

success
boolean
Example:

true

data
object[]