πŸ—„οΈ Servers Types

Server types define kinds of Servers offered. Each type has an hourly and a monthly cost. You will pay whichever cost is lower for your usage of this specific Server. Costs may differ between Locations.

Currency for all amounts is €. All prices exclude VAT.

Get all Server Types

Gets all Server type objects.

HetznerCloudClient hetznerCloudClient = new HetznerCloudClient("apiKey");

// Get All
List<ServerType> listServerTypes = await hetznerCloudClient.ServerType.Get();

Get a Server Type

Gets a specific Server type object.

HetznerCloudClient hetznerCloudClient = new HetznerCloudClient("apiKey");

// Set ID
long serverTypeId = 15,

// Get
ServerType serverType = await hetznerCloudClient.ServerType.Get(serverTypeId);

JSON

Last updated

Was this helpful?