Skip to main content
GET
/
trigger
/
{trigger_id}
/
runs
List Trigger Runs
curl --request GET \
  --url https://api.example.com/trigger/{trigger_id}/runs
Returns run summaries for one trigger ID.

Request

curl -X GET "https://api.mosaic.so/trigger/[trigger_id]/runs?limit=25" \
  -H "Authorization: Bearer mk_your_api_key"

Query Parameters

FieldTypeRequiredDescription
limitnumberNoPage size (1-100, default 25).
cursorstringNoPagination cursor from next_cursor.
statusstringNoComma-separated statuses (running,completed).
fromstringNoISO timestamp lower bound on created_at.
tostringNoISO timestamp upper bound on created_at.

Response

{
  "runs": [
    {
      "run_id": "7f8d9c2b-4a6e-8b3f-1d5c-9e2f3a4b5c6d",
      "agent_id": "123e4567-e89b-12d3-a456-789012345678",
      "status": "completed",
      "status_message": null,
      "started_at": "2026-03-02T09:00:00Z",
      "updated_at": "2026-03-02T09:06:00Z",
      "node_status_counts": {
        "completed": 10,
        "in_progress": 0,
        "failed": 0
      },
      "inputs": [],
      "outputs": [],
      "triggered_by": {
        "trigger_id": "9cb911f5-7e2e-473d-8de0-9f5e2b7c95c1"
      }
    }
  ],
  "next_cursor": null
}