Skip to content

List template renders

Lists all renders of a template.

Parameters

id string REQUIRED The template id that you want to retrieve the renders.

page integer The page of the results you would like to retrieve. The initial page is 0.

limit integer The API returns 25 items per page by default but you can request up to 100 using this parameter.

Sample Request

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

ENDPOINT
GET /v1/template/:id/renders
REQUEST
fetch(`https://api.templated.io/v1/template/${id}/renders?page=2&limit=50`, {
method: 'GET',
headers: {
'Authorization' : `Bearer ${API_KEY}`
}
})