Skip to main content
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"
{
  "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

id
string
required
The agent skill ID.

Query Parameters

status
string
Filter by execution status: completed, failed, pending, running, or cancelled.
limit
integer
default:50
Maximum results to return. Max: 100.

Response

executions
array
Array of execution records.
curl "https://api.magpipe.ai/functions/v1/manage-skills/SKILL_ID/executions?limit=10" \
  -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"
      }
    }
  ]
}