GET
/
api
/
templates
List Templates
curl --request GET \
  --url https://api.curatepdf.com/api/templates \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "templates": [
    {
      "id": "template_123",
      "name": "My Template",
      "created_at": "2024-01-01T00:00:00.000Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 10,
    "total": 7,
    "totalPages": 1
  }
}

Authorizations

x-api-key
string
header
required

API key for accessing the Docurate PDF API

Query Parameters

page
integer
default:1
limit
integer
default:10
Required range: x <= 100

Response

200 - application/json

Templates list

The response is of type object.