GET
/
v1
/
plans
curl --request GET \
  --url https://api.hyperline.co/v1/plans \
  --header 'Authorization: Bearer <token>'
{
  "meta": {
    "total": 1,
    "taken": 1,
    "skipped": 123
  },
  "data": [
    {
      "id": "plan_zHmjoDea4ZRmQV",
      "name": "Starter",
      "description": "Starter pack",
      "commitment_interval": {
        "period": "years",
        "count": 1
      },
      "renew_automatically": true,
      "trial_interval": {
        "period": "months",
        "count": 1
      }
    }
  ]
}

Authorizations

Authorization
string
headerrequired

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

Query Parameters

take
number | null
default: 50
skip
number | null
default: 0

Response

200 - application/json
meta
object
required
data
object[]
required

List of Plan.