Skip to main content
GET
/
workflows
/
{workflowId}
/
analytics
Retrieve usage metrics for a workflow
curl --request GET \
  --url https://production.runalloy.com/workflows/{workflowId}/analytics \
  --header 'Authorization: <authorization>' \
  --header 'x-api-version: <x-api-version>'
{
  "totalAppActions": 14,
  "totalWorkflowRuns": 14,
  "totalErrors": 0
}

Headers

Authorization
string
default:bearer YOUR_API_KEY
required
x-api-version
string
default:2025-09
required

The version of the API to use. The current API version is 2025-09.

Path Parameters

workflowId
string
required

The Id of the workflow you want to find errors for

Response

200 - application/json

200

totalAppActions
integer
default:0
Example:

14

totalWorkflowRuns
integer
default:0
Example:

14

totalErrors
integer
default:0
Example:

0

I