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
}
]
}
]
Returns a list of all 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
}
]
}
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
successful operation
The response is of type object[]
.
Was this page helpful?