Skip to main content
GET
/
api
/
plans
List visible subscription plans
curl --request GET \
  --url https://nexus-dev.gerowallet.io/api/plans \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "Pro",
    "tier": "pro",
    "price": 199,
    "requestLimit": 1000000,
    "unlimited": false
  }
]

Documentation Index

Fetch the complete documentation index at: https://nexus.gerowallet.io/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT Token Authentication

Response

Plans returned

id
string<uuid>

Plan ID

name
string

Display name

Example:

"Pro"

tier
string

Machine-readable tier slug

Example:

"pro"

price
integer<int32>

Monthly price in USD

Example:

199

requestLimit
integer<int64>

Monthly request cap. Null when the plan has no cap (unlimited).

Example:

1000000

unlimited
boolean

True when the plan has no request cap.

Example:

false