List Executions
curl --request GET \
--url https://api.example.com/api/executions \
--header 'X-Kinetic-Key: <api-key>'import requests
url = "https://api.example.com/api/executions"
headers = {"X-Kinetic-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Kinetic-Key': '<api-key>'}};
fetch('https://api.example.com/api/executions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"items": [
{
"execution_uuid": "<string>",
"workflow_version_uuid": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"workflow_uuid": "<string>",
"workflow_name": "<string>",
"input_payload": null,
"duration_ms": 123,
"n_steps": 123,
"n_agent_actions": 123,
"n_screenshots": 123,
"output_url": "<string>",
"video_url": "<string>",
"logs_url": "<string>"
}
],
"total": 123
}executions
List Executions
GET
/
api
/
executions
List Executions
curl --request GET \
--url https://api.example.com/api/executions \
--header 'X-Kinetic-Key: <api-key>'import requests
url = "https://api.example.com/api/executions"
headers = {"X-Kinetic-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Kinetic-Key': '<api-key>'}};
fetch('https://api.example.com/api/executions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"items": [
{
"execution_uuid": "<string>",
"workflow_version_uuid": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"workflow_uuid": "<string>",
"workflow_name": "<string>",
"input_payload": null,
"duration_ms": 123,
"n_steps": 123,
"n_agent_actions": 123,
"n_screenshots": 123,
"output_url": "<string>",
"video_url": "<string>",
"logs_url": "<string>"
}
],
"total": 123
}Was this page helpful?
⌘I
