Skip to main content
GET
/
plans
Get All Plans
curl --request GET \
  --url https://dev-billing-api.spectertech.ai/api/v1/plans
[
  {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "price": 123,
    "currency": "<string>",
    "interval": "<string>",
    "features": [
      {
        "id": "<string>",
        "name": "<string>",
        "description": "<string>"
      }
    ]
  }
]

Response

200 - application/json

OK - Successful response

id
string

Unique identifier of the plan

name
string

Name of the plan

description
string

Detailed description of the plan

price
number

Price in the smallest currency unit (e.g., cents)

currency
string

Currency code (e.g., 'usd')

interval
string

Billing interval (e.g., 'month')

features
object[]
I