⚡ 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
- Bash
- Javascript
- Python
- Php
curl --location 'https://n8n.japanyosan.com/execution/412' \
--header 'X-N8N-API-KEY: ey*********'
fetch('https://n8n.japanyosan.com/execution/412', {
method: 'GET',
headers: {
'X-N8N-API-KEY': 'ey*********'
}
})
.then(response => response.json())
.then(data => console.log(data));
import requests
url = "https://n8n.japanyosan.com/execution/412"
headers = {
"X-N8N-API-KEY": "ey*********"
}
response = requests.get(url, headers=headers)
print(response.json())
<?php
$url = "https://n8n.japanyosan.com/execution/412";
$headers = [
"X-N8N-API-KEY: ey*********"
];
$options = [
"http" => [
"header" => implode("
", $headers),
"method" => "GET"
]
];
$context = stream_context_create($options);
$response = file_get_contents($url, false, $context);
echo $response;
?>
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
}