N8n API GET executions - status property not in result

Describe the problem/error/question

For the /executions API, the status field is not returned in the object as it is shown here:

I have even tried the includeData, but that does not set it either.

curl 'https://xyz:5678/api/v1/executions?includeData=true&limit=100

Share the output returned by the last node

Name                           Value
----                           -----
id                             630346
finished                       True
mode                           trigger
retryOf
retrySuccessId
startedAt                      2025-10-26 17:29:29
stoppedAt                      2025-10-26 17:29:29
workflowId                     Xr3ghSMRQq07OESg
waitTill
data                           {[startData, System.Management.Automation.OrderedHashtable], [resultData, System.Management.Automation.OrderedHashtable], [executionData, System.Managem…
workflowData                   {[id, Xr3ghSMRQq07OESg], [name, CrowdStrike Falcon Alerts], [active, True], [isArchived, False]…}
customData                     {}

Information on your n8n setup

Debug info

core

  • n8nVersion: 1.108.1
  • platform: docker (self-hosted)
  • nodeJsVersion: 22.17.0
  • database: sqlite
  • executionMode: regular

Hi @hukel
please double-check the request parameters if you’re using the HTTP Request node, or you can just use the n8n node instead:

As you can see, it’s included in the results:

You might also need to update your n8n version, not sure maybe there’s an update or something related to this..

1 Like

I am accessing the API from outside of n8n.

curl.exe "$n8nbase/api/v1/executions?includeData=false&limit=1" --header "X-N8N-API-KEY: $n8nkey"

Yields


{"data":[{"id":"630711","finished":true,"mode":"trigger","retryOf":null,"retrySuccessId":null,"startedAt":"2025-10-26T18:39:29.061Z","stoppedAt":"2025-10-26T18:39:29.458Z","workflowId":"Xr3ghSMRQq07OESg","waitTill":null}],"nextCursor":"eyJsYXN0SWQiOiI2MzA3MTEiLCJsaW1pdCI6MX0="

The n8n version update was the fix. The status field is now present on n8n version 1.116.2

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.