> For the complete documentation index, see [llms.txt](/llms.txt).
> A full single-fetch corpus is available at [llms-full.txt](/llms-full.txt).
---
title: "List scorers"
description: "List a project's scorers."
method: "GET"
endpoint: "/api/v1/projects/:projectId/scorers"
order: 1
last_verified: 2026-07-27
---

<ApiEndpoint
  method="GET"
  endpoint="/api/v1/projects/:projectId/scorers"
  description="List a project's scorers."
>
  <section>
    ### Path parameters

    <ApiAttribute name="projectId" type="string" description="The project's UUID." required={true} />
  </section>

  <section>
    ### Response

    ```json {{ title: 'Response' }}
    {
      "success": true,
      "message": "Scorers retrieved successfully",
      "data": [
        {
          "id": "4d5e6f7a-...",
          "project_id": "b6f1a3e2-...",
          "name": "field-exact-match",
          "description": "Checks extracted invoice fields against the expected values exactly.",
          "type": "code",
          "version": 2,
          "enabled": true,
          "language": "python"
        },
        {
          "id": "5e6f7a8b-...",
          "project_id": "b6f1a3e2-...",
          "name": "response-helpfulness",
          "type": "llm_judge",
          "version": 1,
          "enabled": true,
          "prompt_template": "Rate the response's helpfulness from 1-5...",
          "use_cot": true
        }
      ]
    }
    ```
  </section>
</ApiEndpoint>
