SnozeDevelopers
API referenceBilling

Read the plan catalog with the workspace's current plan

Returns the purchasable plan catalog plus the workspace's effective plan and subscription status. Any workspace member with a Clerk session and a synced profile may call it, so members see only the effective plan rather than the full subscription record. If a pricing experiment is running the caller's deterministic variant selects the catalog and the exposure is recorded.

GET
/v1/workspaces/{workspaceId}/billing/plans
AuthorizationBearer <token>

Workspace API key created in Workspace settings → API keys. Scopes on the key bound what it can read and write.

In: header

Path Parameters

workspaceId*string

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/workspaces/string/billing/plans"
{  "data": {    "catalog": {      "plans": [        {          "plan": "free",          "name": "string",          "tagline": "string",          "bullets": [            "string"          ],          "selfServe": true,          "maxEditorSeats": 0,          "maxRecords": 0,          "automationRunsBasePerMonth": 0,          "automationRunsPerSeatPerMonth": 0,          "maxAutomations": 0,          "maxDashboards": 0,          "maxForms": 0,          "maxStorageBytes": 0,          "historyRetentionDays": 0,          "aiMonthlyBaseMicrousd": 0,          "aiMonthlyPerSeatMicrousd": 0,          "features": [            "string"          ],          "prices": {            "month": {              "amountCents": 0,              "currency": "string",              "checkoutReady": true            },            "year": {              "amountCents": 0,              "currency": "string",              "checkoutReady": true            }          }        }      ]    },    "plan": "free",    "status": "none"  }}