Templated API Documentation
With the Templated API you can automate the generation of images, videos, and PDFs.
This guide will help you get started integrating with our simple API.
Getting Started
Sign up for an account.
Create your template in our editor, import from Canva or select one from our Template Gallery.
Get your API key in your dashboard in the API Key tab.
Make a call to generate a render (image, video, or PDF).
SAMPLE REQUEST fetch('https://api.templated.io/v1/render', {method: 'POST',body: JSON.stringify({template: TEMPLATE_ID,layers: {'text-1': {text: 'This is my text to be rendered',color: '#FF0000',background: '#0000FF',},'image-1': {image_url: 'https://picsum.photos/200/300.jpg',},},}),headers: {'Content-Type': 'application/json','Authorization' : `Bearer ${API_KEY}`},});Integrate our API to your workflow.
Check the Create a render endpoint documentation for more details.
Try it in Postman
Want to explore our API quickly? Check out our complete API collection in Postman where you can test all endpoints, see request examples, and get started faster.