curl "https://api.magpipe.ai/functions/v1/manage-skills/SKILL_ID/executions?limit=10" \
-H "Authorization: Bearer YOUR_API_KEY"
curl "https://api.magpipe.ai/functions/v1/manage-skills/SKILL_ID/executions?status=failed&limit=5" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"executions": [
{
"id": "b425a0b3-...",
"agent_skill_id": "7a99a0af-...",
"trigger_type": "manual",
"status": "completed",
"result": {
"summary": "Social Media Monitor: 20 new mention(s) found...",
"actions_taken": ["mentions_found"],
"data": { "new_mentions": 20 }
},
"error_message": null,
"execution_time_ms": 8500,
"created_at": "2026-03-05T07:06:14.000Z",
"completed_at": "2026-03-05T07:06:22.500Z",
"skill_definitions": {
"name": "Social Media Monitoring",
"slug": "social_media_monitoring"
}
}
]
}
Skills
List Skill Executions
List execution history for a skill
GET
/
manage-skills
/
{id}
/
executions
curl "https://api.magpipe.ai/functions/v1/manage-skills/SKILL_ID/executions?limit=10" \
-H "Authorization: Bearer YOUR_API_KEY"
curl "https://api.magpipe.ai/functions/v1/manage-skills/SKILL_ID/executions?status=failed&limit=5" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"executions": [
{
"id": "b425a0b3-...",
"agent_skill_id": "7a99a0af-...",
"trigger_type": "manual",
"status": "completed",
"result": {
"summary": "Social Media Monitor: 20 new mention(s) found...",
"actions_taken": ["mentions_found"],
"data": { "new_mentions": 20 }
},
"error_message": null,
"execution_time_ms": 8500,
"created_at": "2026-03-05T07:06:14.000Z",
"completed_at": "2026-03-05T07:06:22.500Z",
"skill_definitions": {
"name": "Social Media Monitoring",
"slug": "social_media_monitoring"
}
}
]
}
Retrieve the execution history for a specific agent skill. Results are ordered by most recent first.
Path Parameters
string
required
The agent skill ID.
Query Parameters
string
Filter by execution status:
completed, failed, pending, running, or cancelled.integer
default:50
Maximum results to return. Max: 100.
Response
array
Array of execution records.
Show Execution
Show Execution
string
Execution ID (UUID)
string
Agent skill this execution belongs to
string
How it was triggered:
manual, schedule, event, dry_runstring
completed, failed, pending, running, or cancelledobject
Execution result with summary and data
string
Error details if failed
integer
Duration in milliseconds
string
ISO timestamp when execution started
string
ISO timestamp when execution finished
object
Joined skill name and slug
curl "https://api.magpipe.ai/functions/v1/manage-skills/SKILL_ID/executions?limit=10" \
-H "Authorization: Bearer YOUR_API_KEY"
curl "https://api.magpipe.ai/functions/v1/manage-skills/SKILL_ID/executions?status=failed&limit=5" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"executions": [
{
"id": "b425a0b3-...",
"agent_skill_id": "7a99a0af-...",
"trigger_type": "manual",
"status": "completed",
"result": {
"summary": "Social Media Monitor: 20 new mention(s) found...",
"actions_taken": ["mentions_found"],
"data": { "new_mentions": 20 }
},
"error_message": null,
"execution_time_ms": 8500,
"created_at": "2026-03-05T07:06:14.000Z",
"completed_at": "2026-03-05T07:06:22.500Z",
"skill_definitions": {
"name": "Social Media Monitoring",
"slug": "social_media_monitoring"
}
}
]
}
⌘I