v1

latestOpenAPI 3.0.32026-07-22194221292.5 KB
templates

Get template

Returns detailed information about a deployment template including its configuration, source code reference, and available parameters.

get/templates/{templateName}

Path parameters

templateNamestring required

Name of the template

Response

successful operation

defaultBranchstring

Default branch of the template

descriptionstring

Description of the template

downloadCountinteger

Number of downloads/clones of the repository

forksCountinteger

Number of forks the repository has

iconstring

URL to the template's icon

iconDarkstring

URL to the template's icon in dark mode

namestring

Name of the template

shastring

SHA of the variable

starCountinteger

Number of stars the repository has

topicsstring[]

Topic of the template

urlstring

URL of the template

Example response

{
  "defaultBranch": "main",
  "description": "A starter template for building LangChain agents",
  "downloadCount": 1200,
  "forksCount": 45,
  "name": "langchain-agent",
  "starCount": 150,
  "url": "https://github.com/blaxel-ai/template-langchain-agent",
  "variables": [
    {
      "description": "OpenAI API key for the agent",
      "integration": "openai",
      "name": "OPENAI_API_KEY",
      "path": ".env",
      "secret": true
    }
  ]
}