List templates

Last modified: March 21, 2025

This endpoint allows you to get a list of all your templates with metadata and preview links.

GET Endpoint

https://get.renderform.io/api/v2/my-templates

Looking for the v1 endpoint?

Example request

curl --location
     --request GET 'https://get.renderform.io/api/v2/my-templates' \
     --header 'X-API-KEY: <API_KEY>' \
     --header 'Content-Type: application/json'

Pagination

You can paginate the results by using the page and size query parameters.

ParameterTypeDescription
namestringFilter by template name
catalogstringFilter by catalog name
pageintegerThe page number
sizeintegerThe number of results per page (max 50)

Sample response

[
  {
    "identifier": "tall-panthers-sting-rudely-6345",
    "name": "Social Media Cover",
    "scaleFactor": 1.0,
    "outputFormat": "jpeg",
    "width": 1280,
    "height": 670,
    "createdBy": "John Doe",
    "editor": "canvas-html",
    "catalog": "Social Media"
  },
  {
    "identifier": "dirty-dragonflies-chat-gladly-2623",
    "name": "Who is hiring?",
    "preview": "https://cdn.renderform.io/previews/dirty-dragonflies-chat-gladly-2623.jpg",
    "scaleFactor": 1.0,
    "outputFormat": "pdf",
    "width": 1024,
    "height": 1024,
    "createdBy": "John Doe",
    "editor": "canvas-editor",
    "catalog": "Social Media"
  }
]