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 =newHetznerCloudClient("apiKey");// Get AllList<ServerType> listServerTypes =awaithetznerCloudClient.ServerType.Get();
Get a Server Type
Gets a specific Server type object.
HetznerCloudClient hetznerCloudClient =newHetznerCloudClient("apiKey");// Set IDlong serverTypeId =15,// GetServerType serverType =awaithetznerCloudClient.ServerType.Get(serverTypeId);