Skip to main content
GET https://api.craftkit.dev/v1/templates
Returns every non-deleted template in the authenticated key’s project, newest-updated first. Lightweight — no manifest. Use Get a template for the manifest.

Authorization

Authorization
string
required
Bearer ck_live_… — a project API key.

Response

templates
object[]
cURL
curl https://api.craftkit.dev/v1/templates \
  -H "Authorization: Bearer $CRAFTKIT_API_KEY"
200
{
  "templates": [
    {
      "id": "…",
      "name": "Charter Handover",
      "slug": "charter-handover",
      "description": null,
      "templateType": "document",
      "currentVersionNumber": 2,
      "published": true,
      "createdAt": "2026-05-01T09:00:00.000Z",
      "updatedAt": "2026-06-01T12:00:00.000Z"
    }
  ]
}