nodestash
Billing

List available plans

Returns the list of available billing plans with pricing, limits, and features. Requires authentication.

GET
/billing/plans
AuthorizationBearer <token>

API key from your nodestash dashboard. Pass as a Bearer token in the Authorization header.

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://api.nodestash.io/v1/billing/plans"
{
  "data": [
    {
      "id": "pro",
      "name": "Pro",
      "price_monthly": 2900,
      "contacts_limit": 10000,
      "api_calls_limit": 100000,
      "features": [
        "string"
      ]
    }
  ],
  "meta": {
    "request_id": "req_abc123def456"
  }
}
{
  "error": {
    "code": "INVALID_API_KEY",
    "message": "Missing or invalid Authorization header"
  },
  "meta": {
    "request_id": "req_abc123def456"
  }
}
{
  "error": {
    "code": "RATE_LIMITED",
    "message": "Rate limit exceeded"
  },
  "meta": {
    "request_id": "req_abc123def456"
  }
}