Skip to main content
GET
/
templates
List all templates
curl --request GET \
  --url https://app.myhero.so/templates \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "projectTemplates": [
      {
        "_id": "<string>",
        "userId": "<string>",
        "workspaceId": "<string>",
        "name": "<string>",
        "createdAt": 123,
        "updatedAt": 123,
        "originId": "<string>",
        "icon": {
          "name": "<string>",
          "color": "<string>"
        },
        "emoji": {
          "unified": "<string>",
          "emojiStyle": "<string>"
        },
        "reference": "<string>",
        "description": "<string>"
      }
    ],
    "documentTemplates": [
      {
        "_id": "<string>",
        "type": "project",
        "name": "<string>",
        "createdAt": 123,
        "updatedAt": 123,
        "publisher": "<string>",
        "category": "<string>",
        "description": "<string>"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.myhero.so/llms.txt

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

Returns all available project templates and document templates in a single response. Document templates include metadata only — the template data payload is excluded from this listing.

Authorizations

Authorization
string
header
required

HERO personal access token

Response

200 - application/json

200 response

data
object
required