API Reference
Get automation
Get a single automation, including its full definition
On this page
This endpoint returns a single automation you own, including its full definition (the trigger and its chained steps) so you can inspect or repair it.
Path Parameters
idstringrequired
The ID of the automation (from List automations)
Query Parameters
include_secretsboolean
By default, credential-bearing values inside the definition (API keys, tokens, Authorization headers) are masked as ••• hidden. Pass true to return them unmasked.
Response
dataobject
The automation
A missing automation — or one that does not belong to your account — returns a 404 with {"message": "Automation not found"}.
{
"data": {
"id": "f4EaLhOW2zoEsXXSOJP2r",
"name": "Order lookup",
"status": "enabled",
"updated_at": "2026-07-24T18:23:57.259Z",
"definition": {
"name": "trigger",
"type": "PIECE_TRIGGER",
"displayName": "Catch Webhook",
"settings": {
"pieceName": "@activepieces/piece-webhook",
"triggerName": "catch_webhook"
},
"nextAction": {
"name": "step_1",
"type": "PIECE",
"displayName": "Look up the order",
"settings": {
"pieceName": "@activepieces/piece-http",
"actionName": "send_request",
"input": {
"url": "https://api.example.com/orders",
"method": "GET",
"headers": {
"Authorization": "••• hidden"
}
}
}
}
},
"binding": null
}
}
{
"message": "Automation not found"
}
Related guides
API Reference
Introduction
Welcome to the VoxLink API
Read guide →API Reference
Authentication
Learn how to authenticate your API requests
Read guide →API Reference
Get current user
Get the authenticated user's profile information
Read guide →API Reference
List assistants
List all assistants for the authenticated user with pagination
Read guide →