---
title: "List Entries"
method: GET
path: "/golden_set/entries"
tags: ["golden_set"]
---

# List Entries

`GET /golden_set/entries`

List golden set entries with optional filtering.

Args:
    status_filter: Filter by entry status.
    mode: Filter by session mode.
    organization_id: Filter by organization ID.

## Query parameters

- `status_filter` 'nominated' | 'approved' | 'rejected' | 'archived' — Status of a golden set entry in the curation workflow.
- `mode` 'rca' | 'chat' | 'triage' | 'alert_story'
- `organization_id` string, nullable

## Response `200`

Successful Response

- ListEntriesResponse — Response for listing golden set entries.
  - `entries` GoldenSetEntry[], required
    - `id` string
    - `display_name` string, required — Human-readable display name for the golden set entry.
    - `session_input` GoldenSetEntryInput, required — Input for a golden set entry.
      - `organization` BenchmarkingGoldenSetModelsOrganization, required — Organization reference with display information.
        - `id` string, required — The organization's unique identifier (UUID).
        - `display_name` string, required — Human-readable name for the organization.
      - `mode` 'rca' | 'chat' | 'triage' | 'alert_story', required
      - `user_input` string, required
      - `incident_time` string, date-time, nullable, required
      - `reference_session` SourceSession, required — Reference to the original session this entry was derived from.
        - `session_id` string, required
        - `environment` 'production' | 'staging', required
    - `ground_truths` GroundTruthItemOutput[], required
      - union
        - ManualGroundTruthItem
          - `type` 'manual'
          - `author_email` string, required
          - `markdown_content` string, required — The markdown representation of the ground truth content.
        - IntegrationGroundTruthItem
          - `type` 'integration'
          - `integration_type` 'anthropic' | 'openai' | 'gradient_ai' | 'datadog' | 'elasticsearch' | 'prometheus' | 'mimir' | 'victoria_metrics' | 'grafana' | 'appdynamics' | 'servicenow' | 'github' | 'gitlab' | 'thousandeyes' | 'linear' | 'notion' | 'loki' | 'opensearch' | 'splunk' | 'gcp' | 'motherduck' | 'confluence' | 'coralogix' | 'firehydrant' | 'slack' | 'teams' | 'jira' | 'kubernetes' | 'traversal_webhook' | 'traversal_api_key' | 'incident_io' | 'sentry' | 'tempo' | 'alexandria' | 'honeycomb' | 'alertmanager' | 'emim' | 'trailblazer' | 'dynatrace' | 'cribl' | 'mcp' | 'aws_cli' | 'artifactory' | 'spinnaker' | 'amex_webex_captions' | 'deptracker' | 'do_service_catalog' | 'cloudwatch', required — Canonical integration platform types. Represents the platform or system where data originates from. Used to determine appropriate connectors, authentication, and API clients.
          - `description` string, nullable, required — Human-provided description or note about this ground truth link.
          - `markdown_content` string, nullable, required — The markdown representation of the ground truth content.
          - `link` string, uri, nullable, required — The link to the ground truth.
    - `status` 'nominated' | 'approved' | 'rejected' | 'archived', required — Status of a golden set entry in the curation workflow.
    - `created_by` string, required
    - `created_at` string, date-time, required
    - `approved_by` string, nullable, required
    - `approved_at` string, date-time, nullable, required
    - `archived_by` string, nullable, required
    - `archived_at` string, date-time, nullable, required
    - `archived_reason` string, nullable, required
  - `total` integer, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/traversal/apis/fastapi.md) · [All operations](https://skmtc.net/traversal/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/traversal/fastapi/revisions/2134ebffd1ef/schema)
