Skip to content

Billing

Billing is where you manage subscription lifecycle actions and review usage against current limits.

This page is intentionally plan-agnostic and focuses on workflow, not hardcoded pricing.

  1. Open Billing.
  2. Review current plan status and usage progress.
  3. Start checkout flow when upgrading.
  4. Open billing portal for subscription management and billing history.
  5. Re-check status after returning from checkout or portal.
Terminal window
# Get current subscription status
curl https://api.hookbridge.io/v1/billing/subscription \
-H "Authorization: Bearer YOUR_API_KEY"
# Create checkout session
curl -X POST https://api.hookbridge.io/v1/billing/checkout \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"plan":"pro","interval":"annual"}'
# Create customer portal session
curl -X POST https://api.hookbridge.io/v1/billing/portal \
-H "Authorization: Bearer YOUR_API_KEY"
Personalize Examples

Enter your credentials to populate code examples throughout the docs.