Retrieve a Template
4 min
templates in are pre configured blueprints that define the specifications and settings for specific server types, cube, and the gpu when you retrieve a template, you access its complete configuration details including cpu cores, ram allocation, storage size, and other properties that can be used to create new instances retrieving template information is useful for planning deployments review available configurations before creating instances automation programmatically access template specifications for scripted deployments resource management understand template capabilities and limitations cost estimation analyze resource specifications to estimate usage costs this api call returns comprehensive template metadata including creation details, current state, and all configuration properties endpoint use the following endpoint to retrieve a specific template https //api ionos com/cloudapi/v6/templates/{templateid} request note the following request contains sample values remember to replace them with the relevant information curl location \\ \ request get 'https //api ionos com/cloudapi/v6/templates/{templateid}' \\ \ header 'authorization bearer eyj0exaioijkv1qilcjrawqio' \\ \ header 'content type application/json' to make authenticated requests to the api, the following fields are mandatory in the request header name type description v6 string the api version templates string template attributes id , metadata , and properties templateid string the unique template id response a 200 message confirms that the desired template details are retrieved 	 { 	 "id" "e15d15e7 ea9a 48ae a60a 29b9463f4519", 	 "type" "template", 	 "href" "https //api ionos com/cloudapi/v6/templates/e15d15e7 ea9a 48ae a60a 29b9463f4519", 	 "metadata" { 	 "etag" "5e91ac6d46fc3e1da0c0cf6353bc9576", 	 "createddate" "2025 10 16t08 41 00z", 	 "createdby" "\[unknown]", 	 "createdbyuserid" "\[unknown]", 	 "lastmodifieddate" "2025 12 03t10 54 36z", 	 "lastmodifiedby" "\[unknown]", 	 "lastmodifiedbyuserid" "\[unknown]", 	 "state" "available" 	 }, 	 "properties" { 	 "name" "h200 s", 	 "cores" 15, 	 "ram" 273408, 	 "storagesize" 1000, 	 "storagetype" "ssd premium", 	 "category" "gpu category", 	 "gpus" \[ 	 { 	 "vendor" "nvidia corporation", 	 "model" "gh100 \[h200 nvl]", 	 "type" "passthrough", 	 "count" 1 	 } 	 ] 	 } 	 }
