1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
| # curl -sSL https://api.vultr.com/v1/plans/list_vc2 | jq . { "201": { "VPSPLANID": "201", "name": "1024 MB RAM,25 GB SSD,1.00 TB BW", "vcpu_count": "1", "ram": "1024", "disk": "25", "bandwidth": "1.00", "bandwidth_gb": "1024", "price_per_month": "5.00", "plan_type": "SSD" }, "208": { "VPSPLANID": "208", "name": "98304 MB RAM,1600 GB SSD,15.00 TB BW", "vcpu_count": "24", "ram": "98304", "disk": "1600", "bandwidth": "15.00", "bandwidth_gb": "15360", "price_per_month": "640.00", "plan_type": "SSD" } }
# curl -sSL https://api.vultr.com/v1/plans/list_vc2z | jq . { "400": { "VPSPLANID": "400", "name": "1024 MB RAM,32 GB SSD,1.00 TB BW", "vcpu_count": "1", "ram": "1024", "disk": "32", "bandwidth": "1.00", "bandwidth_gb": "1024", "price_per_month": "6.00", "plan_type": "HIGHFREQUENCY" }, "406": { "VPSPLANID": "406", "name": "49152 MB RAM,768 GB SSD,8.00 TB BW", "vcpu_count": "12", "ram": "49152", "disk": "768", "bandwidth": "8.00", "bandwidth_gb": "8192", "price_per_month": "256.00", "plan_type": "HIGHFREQUENCY" } }
# curl -sSL "https://api.vultr.com/v1/plans/list?type=vc2z" | jq . { "400": { "VPSPLANID": "400", "name": "1024 MB RAM,32 GB SSD,1.00 TB BW", "vcpu_count": "1", "ram": "1024", "disk": "32", "bandwidth": "1.00", "bandwidth_gb": "1024", "price_per_month": "6.00", "plan_type": "HIGHFREQUENCY", "available_locations": [1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 19, 22, 24, 25, 39, 40] }, "406": { "VPSPLANID": "406", "name": "49152 MB RAM,768 GB SSD,8.00 TB BW", "vcpu_count": "12", "ram": "49152", "disk": "768", "bandwidth": "8.00", "bandwidth_gb": "8192", "price_per_month": "256.00", "plan_type": "HIGHFREQUENCY", "available_locations": [] } }
|