Articles on: Templates and Layers

Multi-Page Templates

Multi-Page Templates


Create templates with multiple pages for carousels, PDFs, and presentations.


Creating Multi-Page Templates


  1. Open the Editor
  2. Click the + Add Page button at the bottom
  3. Design each page individually
  4. Each page can have different layers


Rendering Multi-Page Templates


Same Content All Pages


Apply identical changes to every page:

{
"template": "TEMPLATE_ID",
"layers": {
"company_name": { "text": "ACME Corp" },
"logo": { "image_url": "https://..." }
}
}


Different Content Per Page


Use the pages array:

{
"template": "TEMPLATE_ID",
"pages": [
{
"page": "page-1",
"layers": {
"title": { "text": "Welcome" }
}
},
{
"page": "page-2",
"layers": {
"title": { "text": "Our Services" }
}
},
{
"page": "page-3",
"layers": {
"title": { "text": "Contact Us" }
}
}
]
}


Response


Multi-page renders return an array of render objects:

[
{ "id": "render-1", "page": "page-1", "url": "..." },
{ "id": "render-2", "page": "page-2", "url": "..." },
{ "id": "render-3", "page": "page-3", "url": "..." }
]


Merging into Single PDF


Combine all pages into one PDF file:

{
"template": "TEMPLATE_ID",
"format": "pdf",
"merge": true,
"pages": [...]
}


Credit Usage


Each page counts as 1 credit. A 5-page template costs 5 credits per render.


Documentation: https://templated.io/docs/renders/create/

Updated on: 11/01/2026

Was this article helpful?

Share your feedback

Cancel

Thank you!