Skip to content

List folder renders

Lists all renders of a folder.

Parameters

folderId string REQUIRED
The folder ID that you want to retrieve the renders from.

page number
The page number for pagination. Defaults to 0.

limit number
The number of renders per page. Defaults to 25.

Sample Request

Here’s a sample request to list all renders of a folder:

ENDPOINT
GET /v1/folder/:folderId/renders
REQUEST
fetch(`https://api.templated.io/v1/folder/${folderId}/renders?page=0&limit=25`, {
method: 'GET',
headers: {
'Authorization': `Bearer ${API_KEY}`
}
})

Response

The API returns an array of JSON objects with the render details.

[
{
"id": "rnd_123abc",
"url": "renders/2024/03/my-render.png",
"status": "completed",
"width": 1080,
"height": 1080,
"folderId": "fld_456def",
"templateId": "tpl_789ghi",
"createdAt": "2024-03-20T10:30:00Z",
"updatedAt": "2024-03-20T10:30:00Z"
}
]