Skip to main content
GET
/
api
/
v1
/
automation
/
templates
curl "https://your-collabase.ch/api/v1/automation/templates?category=testing" \
  -H "Authorization: Bearer cba_live_..."
[
  {
    "id": "tpl-001",
    "name": "Notify Slack on Test Failure",
    "description": "Sends a Slack DM when a critical test case fails.",
    "category": "testing",
    "tags": ["slack", "testing", "alerting"],
    "downloads": 142
  }
]
Returns public automation templates, ordered by download count (most popular first).

Query parameters

category
string
Filter by category slug.
q
string
Full-text search across name and description.

Response

[].id
string
Template ID.
[].name
string
Template name.
[].description
string
Short description.
[].category
string
Category.
[].tags
array
Tags.
[].downloads
number
Install count.
curl "https://your-collabase.ch/api/v1/automation/templates?category=testing" \
  -H "Authorization: Bearer cba_live_..."
[
  {
    "id": "tpl-001",
    "name": "Notify Slack on Test Failure",
    "description": "Sends a Slack DM when a critical test case fails.",
    "category": "testing",
    "tags": ["slack", "testing", "alerting"],
    "downloads": 142
  }
]