---
title: "List Scorers V1"
method: GET
path: "/v1/scorers"
tags: ["scorer", "v1"]
---

# List Scorers V1

`GET /v1/scorers`

List scorers visible to the caller's organization.

Supports both user-session (JWT) and API-key (Galileo-API-Key) authentication.
Org-scoped, read-only. No Cerbos query plan and no project-level row filtering
so preset scorers remain visible to API-key callers.

## Query parameters

- `scorer_type` ScorerTypes[], nullable — Filter by scorer type. Repeat the query param for multiple values, e.g. ?scorer_type=preset&scorer_type=luna.
- `search` string, nullable
- `starting_token` integer
- `limit` integer

## Response `200`

Successful Response

- V1ListScorersResponse
  - `starting_token` integer
  - `limit` integer
  - `paginated` boolean
  - `next_starting_token` integer, nullable
  - `scorers` V1ScorerEntry[]
    - `id` string, uuid4, required
    - `name` string, required
    - `label` string, nullable
    - `scorer_type` 'llm' | 'code' | 'luna' | 'preset', required
    - `model_type` 'slm' | 'llm' | 'code'
    - `tags` string[]
    - `output_type` 'boolean' | 'categorical' | 'count' | 'discrete' | 'freeform' | 'percentage' | 'multilabel' | 'retrieved_chunk_list_boolean' | 'boolean_multilabel' — Enumeration of output types.
    - `scoreable_node_types` string[], nullable
    - `input_type` 'basic' | 'llm_spans' | 'retriever_spans' | 'sessions_normalized' | 'sessions_trace_io_only' | 'tool_spans' | 'trace_input_only' | 'trace_io_only' | 'trace_normalized' | 'trace_output_only' | 'agent_spans' | 'workflow_spans' — Enumeration of input types.
    - `multimodal_capabilities` MultimodalCapability[], nullable
    - `default_version_id` string, uuid4, nullable
    - `default_version` V1ScorerVersionEntry
      - `id` string, uuid4, required
      - `version` integer, required
      - `finetuned_scorer` V1FinetunedScorerEntry
        - `id` string, uuid4, required
        - `lora_task_id` integer, required
        - `luna_input_type` 'span' | 'trace_object' | 'trace_input_output_only'
        - `luna_output_type` 'float' | 'string' | 'string_list' | 'bool_list'
      - `output_type` 'boolean' | 'categorical' | 'count' | 'discrete' | 'freeform' | 'percentage' | 'multilabel' | 'retrieved_chunk_list_boolean' | 'boolean_multilabel' — Enumeration of output types.
      - `user_prompt` string, nullable
    - `user_prompt` string, nullable
    - `deprecated` boolean, nullable
    - `latest_version` V1ScorerVersionEntry
      - `id` string, uuid4, required
      - `version` integer, required
      - `finetuned_scorer` V1FinetunedScorerEntry
        - `id` string, uuid4, required
        - `lora_task_id` integer, required
        - `luna_input_type` 'span' | 'trace_object' | 'trace_input_output_only'
        - `luna_output_type` 'float' | 'string' | 'string_list' | 'bool_list'
      - `output_type` 'boolean' | 'categorical' | 'count' | 'discrete' | 'freeform' | 'percentage' | 'multilabel' | 'retrieved_chunk_list_boolean' | 'boolean_multilabel' — Enumeration of output types.
      - `user_prompt` string, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/galileo/apis/galileo-api-server.md) · [All operations](https://skmtc.net/galileo/apis/galileo-api-server/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/galileo/galileo-api-server/versions/933e8c8e6366/schema)
