For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
GuidesWhite-labelAPI Reference
GuidesWhite-labelAPI Reference
  • Panic API Reference
      • GETList customer subscriptions
      • POSTActivate a subscription
      • GETGet a subscription
      • PUTUpdate a subscription
      • DELCancel a subscription
      • GETList subscription types
    • Errors & status codes
LogoLogo
Panic API ReferenceSubscriptions

List subscription types

GET
/panic-api/v2/subscriptions/subscriptionTypes
GET
/panic-api/v2/subscriptions/subscriptionTypes
$curl https://staging-panic.aura.services/panic-api/v2/subscriptions/subscriptionTypes \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json"
1[
2 {
3 "id": 101,
4 "name": "Standard Personal Plan",
5 "dependantLimit": 3
6 },
7 {
8 "id": 102,
9 "name": "Family Coverage Plan",
10 "dependantLimit": 6
11 },
12 {
13 "id": 103,
14 "name": "Enterprise Group Plan",
15 "dependantLimit": null
16 }
17]
Lists subscription types and limitations for the current customer source. Resolve IDs in the target environment before creating subscriptions.
Was this page helpful?
Previous

Build a coverage-map link

Next
Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Response

Subscription types.
idinteger
namestring
dependantLimitinteger or null

Errors

401
Unauthorized Error