List automations
GET
/api/automationsGet automation detail
GET
/api/automations/:idDocumentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List and inspect your deployed automations.
/api/automations| Param | Required | Description |
|---|---|---|
q | No | Case-insensitive search on name and description |
curl -s "https://dashboard.floom.dev/api/automations?q=report" \
-H "Authorization: Bearer $API_KEY"
{
"automations": [
{
"id": "auto_abc123",
"name": "Daily Report",
"description": "Generates daily sales summary",
"status": "active",
"schedule": "0 9 * * *",
"scheduleEnabled": true,
"currentVersion": 3,
"createdAt": 1712300000000,
"lastRunStatus": "success",
"lastRunAt": 1712350000000,
"url": "https://dashboard.floom.dev/a/auto_abc123"
}
]
}
/api/automations/:idcurl -s "https://dashboard.floom.dev/api/automations/$AUTOMATION_ID" \
-H "Authorization: Bearer $API_KEY"
{
"id": "auto_abc123",
"name": "Daily Report",
"description": "Generates daily sales summary",
"status": "active",
"schedule": "0 9 * * *",
"currentVersion": 3,
"entrypoint": "main.py",
"fileList": [
{ "path": "main.py", "size": 1234, "hash": "abc..." },
{ "path": "utils/helpers.py", "size": 567, "hash": "def..." }
],
"fileCount": 2,
"totalSize": 1801,
"manifest": { "..." : "..." },
"url": "https://dashboard.floom.dev/a/auto_abc123"
}