Skip to main content
GET
/
api
/
v1
/
templates
List templates
curl --request GET \
  --url https://api.example.com/api/v1/templates \
  --header 'X-API-Key: <api-key>'
{
  "templates": [
    {
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "filename": "<string>",
      "file_size": 123,
      "template_id": "<string>",
      "org_name": "<string>",
      "status": "<string>",
      "metadata": {
        "category": "<string>",
        "tags": [
          "<string>"
        ],
        "description": "<string>",
        "version": "<string>"
      },
      "download_url": "<string>",
      "download_url_expires_in": 123,
      "file_hash": "<string>",
      "file_hash_algorithm": "<string>",
      "content_type": "<string>"
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total": 123,
    "pages": 123
  },
  "filters": {},
  "aggregations": {}
}

Documentation Index

Fetch the complete documentation index at: https://duomi.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Production API key. Development/test deployments may also allow X-Org-Name.

Query Parameters

page
integer
default:1
Required range: x >= 1
limit
integer
default:20
Required range: 1 <= x <= 100
category
string | null
tags
string[] | null
status
string | null
sort
string
default:createdAt
order
string
default:desc
filename
string | null
search
string | null
created_after
string<date-time> | null
created_before
string<date-time> | null
include_deleted
boolean
default:false

Response

Successful Response

Response schema for template list.

templates
TemplateResponse · object[]
required
pagination
PaginationInfo · object
required

Pagination information.

filters
Filters · object
aggregations
Aggregations · object