Miscellaneous /
List plans
Lists available billing plans
Response body
- {object}Response object.
data
{object} requiredResult data.plans
[array] requiredAn array of available plans- {object}A plan object
id
string requiredThe ID of the plan.name
string requiredThe name of the plan.currency
string requiredThe currency code of the currency used by this plan.amountPerMonth
number requiredThe approximate monthly (30 days) cost of the plan.amountPerHour
number requiredThe hourly cost of the plan.cpuResource
number requiredThe CPU resource of the plan, in vCPUs.ramResource
number requiredThe memory resource of the plan, in megabytes
API
CLI
JS Client
GET /v1/plans
Example response
200 OK
A list of available plans.
JSON
{
"data": {
"plans": [
{
"id": "nf-compute-20",
"name": "nf-compute-20",
"currency": "usd",
"amountPerMonth": 4.4,
"amountPerHour": 0.0061,
"cpuResource": 0.2,
"ramResource": 512
}
]
}
}