v1
latestOpenAPI 3.1.02026-07-265094114.0 KBImage Templates
Get template introspection data
Retrieve template metadata (version, dimensions, workspace) and a list of all layers with their properties. This endpoint provides information about what layers are available in the template and what properties can be edited for each layer.
get/beta/image-template/{template_id}
Path parameters
template_idstring required
The external ID of the template to introspect
Response
Template introspection data retrieved successfully.
Example response
{
"metadata": {
"width": 1080,
"height": 1080,
"visibility": "private"
},
"layers": [
{
"type": "text",
"editableProperties": [
"content",
"color",
"font",
"backgroundColor"
],
"width": 200,
"height": 100,
"x": 50,
"y": 30
}
]
}