Skip to main content
GET
/
plans
List available plans
curl --request GET \
  --url https://console.cloudblast.io/api/v2/plans \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 1,
      "name": "Starter VPS",
      "cpu": 2,
      "memory": 2147483648,
      "disk": 42949672960,
      "bandwidth_limit": 1073741824000,
      "monthly_price": 9.99,
      "hourly_price": 0.015,
      "backup_price": 0.05,
      "backup_limit": 3,
      "location_id": null
    }
  ],
  "meta": {
    "current_page": 1,
    "last_page": 3,
    "per_page": 25,
    "total": 72
  }
}

Authorizations

Authorization
string
header
required

API token from your CloudBlast account settings. Pass as Authorization: Bearer <token>.

Query Parameters

page
integer
default:1

Page number for pagination

Response

Paginated plan list

data
object[]
meta
object