Skip to content

List all templates

Lists all templates of an user.
You can also filter templates by name using the query parameter.

Sample Request

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

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