GET
/
templates
curl --request GET \
  --url https://api.blaxel.ai/v0/templates \
  --header 'Authorization: Bearer <token>'
[
  {
    "defaultBranch": "<string>",
    "description": "<string>",
    "downloadCount": 123,
    "forksCount": 123,
    "icon": "<string>",
    "iconDark": "<string>",
    "name": "<string>",
    "sha": "<string>",
    "starCount": 123,
    "topics": [
      "<string>"
    ],
    "url": "<string>",
    "variables": [
      {
        "description": "<string>",
        "integration": "<string>",
        "name": "<string>",
        "path": "<string>",
        "secret": true
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

successful operation

The response is of type object[].