Skip to main content

⚡ Get Execution Info

Get an execution

Endpoint

To retrieve a specific execution, use the following endpoint:

GET https://n8n.japanyosan.com/execution/:id

Replace :id with the specific identifier for the execution you want to retrieve.

Example Request

curl --location 'https://n8n.japanyosan.com/execution/412' \
--header 'X-N8N-API-KEY: ey*********'

Response

{
"id": "412",
"finished": true,
"mode": "manual",
"retryOf": null,
"retrySuccessId": null,
"status": "success",
"createdAt": "2025-02-10T11:18:44.826Z",
"startedAt": "2025-02-10T11:18:44.887Z",
"stoppedAt": "2025-02-10T11:18:45.480Z",
"deletedAt": null,
"workflowId": "7NDUAPcYvLDCJD7T",
"waitTill": null
}