Skip to main content
POST
/
v1
/
subscription
/
portal
curl -X POST https://api.chowder.dev/v1/subscription/portal \
  -H "Authorization: Bearer chd_sk_your_org_key"
{
  "url": "https://billing.stripe.com/p/session/live_x1y2z3..."
}
Get a link to the Stripe Customer Portal where your users can manage their subscription, update payment methods, and view invoices. No request body needed — just call it and redirect.

Authorization

Requires an organization-level API key in the Authorization header.

Response

url
string
A Stripe Customer Portal URL. Redirect the user here to manage their billing.
curl -X POST https://api.chowder.dev/v1/subscription/portal \
  -H "Authorization: Bearer chd_sk_your_org_key"
{
  "url": "https://billing.stripe.com/p/session/live_x1y2z3..."
}