Skip to main content
curl "https://api.chroniclehq.com/api/v1/templates" \
  -H "Authorization: Bearer $API_KEY"
{
  "templates": [
    {
      "id": "tpl_123",
      "name": "Sales pitch",
      "description": "A pitch template for sales discovery calls",
      "category": ["sales", "discovery"],
      "preview_url": "https://templates.chroniclehq.com/sales-pitch.png",
      "sections": []
    }
  ]
}

Documentation Index

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

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

curl "https://api.chroniclehq.com/api/v1/templates" \
  -H "Authorization: Bearer $API_KEY"
The workspace is inferred from your API key. No query parameters are required.

Response

{
  "templates": [
    {
      "id": "tpl_123",
      "name": "Sales pitch",
      "description": "A pitch template for sales discovery calls",
      "category": ["sales", "discovery"],
      "preview_url": "https://templates.chroniclehq.com/sales-pitch.png",
      "sections": []
    }
  ]
}
templates
array
List of available templates

FAQs

No. Workspace scope is inferred from your API key — every key belongs to exactly one workspace.The response contains the public templates plus templates accessible to that workspace.
The endpoint returns public templates plus templates accessible to the workspace.Hidden and personal templates are excluded.
Use them as inputs to presentation creation or generation flows.This endpoint is the best way to discover valid templates before making those requests.