Linode Types v4.174.0
Types List
Returns collection of Linode Types, including pricing and specifications for each Type. These are used when creating or resizing Linodes.
Authorizations
Request Samples
curl https://api.linode.com/v4/linode/types
linode-cli linodes types
Response Samples
{
"data": null,
"page": 1,
"pages": 1,
"results": 1
}
{
"errors": null
}
Responses
data | [array] |
page | [integer] The current page. |
pages | [integer] The total number of pages. |
results | [integer] The total number of results. |
errors | [array] |
Type View
Returns information about a specific Linode Type, including pricing and specifications. This is used when creating or resizing Linodes.
Authorizations
Path Parameters
typeId | [string] RequiredThe ID of the Linode Type to look up. |
Request Samples
curl https://api.linode.com/v4/linode/types/g6-standard-2
linode-cli linodes type-view g6-standard-2
Response Samples
{
"addons": {
"backups": {
"price": {
"hourly": 0.008,
"monthly": 5
},
"region_prices": null
}
},
"class": "standard",
"disk": 81920,
"gpus": 0,
"id": "g6-standard-2",
"label": "Linode 4GB",
"memory": 4096,
"network_out": 1000,
"price": {
"hourly": 0.03,
"monthly": 20
},
"region_prices": null,
"successor": null,
"transfer": 4000,
"vcpus": 2
}
{
"errors": null
}
Responses
addons | [object] A list of optional add-on services for Linodes and their associated costs.
| ||||||||||
class | [string] Enum:
nanode
standard
dedicated
premium
gpu
highmem The class of the Linode Type. We currently offer six classes of compute instances:
| ||||||||||
disk | [integer] The Disk size, in MB, of the Linode Type. | ||||||||||
gpus | [integer] The number of GPUs this Linode Type offers. | ||||||||||
id | [string] The ID representing the Linode Type. | ||||||||||
label | [string] The Linode Type’s label is for display purposes only. | ||||||||||
memory | [integer] Amount of RAM included in this Linode Type. | ||||||||||
network_out | [integer] The Mbits outbound bandwidth allocation. | ||||||||||
price | [object] The default cost of provisioning this Linode Type. Prices are in US dollars, broken down into hourly and monthly charges. Certain Regions have different prices from the default. For Region-specific prices, see
| ||||||||||
region_prices | [array] | ||||||||||
successor Nullable | [string] The Linode Type that a mutate will upgrade to for a Linode of this type. If “null”, a Linode of this type may not mutate. | ||||||||||
transfer | [integer] The monthly outbound transfer amount, in MB. | ||||||||||
vcpus | [integer] The number of VCPU cores this Linode Type offers. |
errors | [array] |