---
title: "List graph executions"
method: GET
path: "/api/graphs/{graph_id}/executions"
tags: ["v1", "graphs"]
---

# List graph executions

`GET /api/graphs/{graph_id}/executions`

## Path parameters

- `graph_id` string, required

## Query parameters

- `page` integer — Page number (1-indexed)
- `page_size` integer — Number of executions per page

## Response `200`

Successful Response

- GraphExecutionsPaginated — Response schema for paginated graph executions.
  - `executions` GraphExecutionMeta[], required
    - `id` string, required
    - `user_id` string, required
    - `graph_id` string, required
    - `graph_version` integer, required
    - `inputs` object, nullable, required
    - `credential_inputs` object, nullable, required
    - `nodes_input_masks` object, nullable, required
    - `preset_id` string, nullable, required
    - `status` 'INCOMPLETE' | 'QUEUED' | 'RUNNING' | 'COMPLETED' | 'TERMINATED' | 'FAILED' | 'REVIEW', required
    - `started_at` string, date-time, nullable — When execution started running. Null if not yet started (QUEUED).
    - `ended_at` string, date-time, nullable — When execution finished. Null if not yet completed (QUEUED, RUNNING, INCOMPLETE, REVIEW).
    - `is_shared` boolean
    - `share_token` string, nullable
    - `is_dry_run` boolean
    - `organization_id` string, nullable
    - `team_id` string, nullable
    - `expert_id` string, nullable
    - `trigger_source` string, nullable
    - `trigger_ref` string, nullable
    - `schedule_id` string, nullable
    - `webhook_id` string, nullable
    - `stats` Stats, required
      - `cost` integer — Execution cost (cents)
      - `duration` number — Seconds from start to end of run
      - `duration_cpu_only` number — CPU sec of duration
      - `node_exec_time` number — Seconds of total node runtime
      - `node_exec_time_cpu_only` number — CPU sec of node_exec_time
      - `node_exec_count` integer — Number of node executions
      - `node_error_count` integer — Number of node errors
      - `error` string, nullable — Error message if any
      - `failure_reason` 'insufficient_balance' | 'entitlement_required' — Structured reasons for terminal graph execution failures.
      - `activity_status` string, nullable — AI-generated summary of what the agent did
      - `correctness_score` number, nullable — AI-generated score (0.0-1.0) indicating how well the execution achieved its intended purpose
  - `pagination` Pagination, required
    - `total_items` integer, required — Total number of items.
    - `total_pages` integer, required — Total number of pages.
    - `current_page` integer, required — Current_page page number.
    - `page_size` integer, required — Number of items per page.

## Other responses

- `401` — Authentication required
- `422` — Validation Error

## Changes

- **2026-09-12** `3c4e43d8215a` — 2 info
  - added the optional property `executions/items/trigger_ref` to the response with the `200` status
  - added the optional property `executions/items/trigger_source` to the response with the `200` status
- **2026-09-07** `d3946c727d24` — 2 info
  - added the optional property `executions/items/schedule_id` to the response with the `200` status
  - added the optional property `executions/items/webhook_id` to the response with the `200` status
- **2026-08-20** `2f82328f5184` — 1 warning
  - added the new `entitlement_required` enum value to the `executions/items/stats/anyOf[subschema #1: Stats]/failure_reason/anyOf[subschema #1: ExecutionFailureReason]/` response property for the response status `200`
- **2026-08-20** `ae1be5efc67a` — 1 warning
  - added the new `device_code` enum value to the `executions/items/credential_inputs/anyOf[subschema #1]/additionalProperties/type` response property for the response status `200`
- **2026-08-18** `48316e19b6fd` — 1 info
  - added the optional property `executions/items/stats/anyOf[subschema #1: Stats]/failure_reason` to the response with the `200` status

[Full history](https://skmtc.dev/significant-gravitas/apis/autogpt-agent-server/changes/api/graphs/:graph_id/executions/get.md)

---

[API](https://skmtc.dev/significant-gravitas/apis/autogpt-agent-server.md) · [All operations](https://skmtc.dev/significant-gravitas/apis/autogpt-agent-server/llms.txt) · [OpenAPI document](https://skmtc.dev/significant-gravitas/apis/autogpt-agent-server/revisions/b84a51b99815?raw)
