GET
/
templates
/
{templateName}
curl --request GET \
  --url https://api.blaxel.ai/v0/templates/{templateName} \
  --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.

Path Parameters

templateName
string
required

Name of the template

Response

200 - application/json
successful operation

Blaxel template

defaultBranch
string

Default branch of the template

description
string

Description of the template

downloadCount
integer

Number of downloads/clones of the repository

forksCount
integer

Number of forks the repository has

icon
string

URL to the template's icon

iconDark
string

URL to the template's icon in dark mode

name
string

Name of the template

sha
string

SHA of the variable

starCount
integer

Number of stars the repository has

topics
string[]

Topic of the template

url
string

URL of the template

variables
object[]

Variables of the template

Blaxel template variable