Skip to main content
GET
/
api
/
v1
/
automations
List automations
curl --request GET \
  --url https://api.example.com/api/v1/automations \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "nightly-deps",
      "revision": "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef",
      "name": "Nightly dependency update",
      "description": "Keeps dependencies fresh.",
      "target": {
        "repository": "fabro-sh/fabro",
        "ref": "main",
        "workflow": "dependency-update"
      },
      "triggers": [
        {
          "id": "manual",
          "type": "api",
          "enabled": true
        }
      ]
    }
  ],
  "meta": {
    "total": 1
  }
}

Authorizations

Authorization
string
header
required

Raw dev token passed as Authorization: Bearer fabro_dev_... when server.auth.methods includes dev-token.

Response

200 - application/json

Automation definitions

List envelope for automation definitions.

data
object[]
required
meta
object
required

Metadata for automation list responses.