Skip to content

List all renders

Lists all renders of an user.

Sample Request

Here’s a sample request to list all user’s renders:

ENDPOINT
GET /v1/renders
fetch(`https://api.templated.io/v1/renders`, {
method: 'GET',
headers: {
'Authorization': `Bearer ${API_KEY}`
}
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));