---
title: "List project_scores"
method: GET
path: "/v1/project_score"
tags: ["ProjectScores"]
---

# List project_scores

`GET /v1/project_score`

List out all project_scores. The project_scores are sorted by creation date, with the most recently-created project_scores coming first

## Query parameters

- `limit` integer, nullable — Limit the number of objects to return
- `starting_after` string, uuid — Pagination cursor id. For example, if the final item in the last page you fetched had an id of `foo`, pass `starting_after=foo` to fetch the next page. Note: you may only pass one of `starting_after` and `ending_before`
- `ending_before` string, uuid — Pagination cursor id. For example, if the initial item in the last page you fetched had an id of `foo`, pass `ending_before=foo` to fetch the previous page. Note: you may only pass one of `starting_after` and `ending_before`
- `ids` union — Filter search results to a particular set of object IDs. To specify a list of IDs, include the query param multiple times
  - string, uuid
  - string[]
- `project_score_name` string — Name of the project_score to search for
- `project_name` string — Name of the project to search for
- `project_id` string, uuid — Project id
- `org_name` string — Filter search results to within a particular organization
- `score_type` union
  - 'slider' | 'categorical' | 'weighted' | 'minimum' | 'online' — The type of the configured score
  - string[] — The type of the configured score

## Response `200`

Returns a list of project_score objects

- object
  - `objects` ProjectScore[], required — A list of project_score objects
    - `id` string, uuid, required — Unique identifier for the project score
    - `project_id` string, uuid, required — Unique identifier for the project that the project score belongs under
    - `user_id` string, uuid, required
    - `created` string, date-time, nullable — Date of project score creation
    - `name` string, required — Name of the project score
    - `description` string, nullable — Textual description of the project score
    - `score_type` 'slider' | 'categorical' | 'weighted' | 'minimum' | 'online', required — The type of the configured score
    - `categories` union
      - ProjectScoreCategory[] — For categorical-type project scores, the list of all categories
        - `name` string, required — Name of the category
        - `value` number, required — Numerical value of the category. Must be between 0 and 1, inclusive
      - object — For weighted-type project scores, the weights of each score
      - string[] — For minimum-type project scores, the list of included scores
      - object, nullable
    - `config` ProjectScoreConfig, nullable
      - `multi_select` boolean, nullable
      - `destination` 'expected' | 'null', nullable
      - `online` OnlineScoreConfig, nullable
        - `sampling_rate` number, required — The sampling rate for online scoring
        - `scorers` SavedFunctionId[], required — The list of scorers to use for online scoring
          - union
            - object
              - …
            - object
              - …
        - `apply_to_root_span` boolean, nullable — Whether to trigger online scoring on the root span of each trace
        - `apply_to_span_names` string[], nullable — Trigger online scoring on any spans with a name in this list
    - `position` string, nullable — An optional LexoRank-based string that sets the sort position for the score in the UI

## Other responses

- `400` — The request was unacceptable, often due to missing a required parameter
- `401` — No valid API key provided
- `403` — The API key doesn’t have permissions to perform the request
- `429` — Too many requests hit the API too quickly. We recommend an exponential backoff of your requests
- `500` — Something went wrong on Braintrust's end. (These are rare.)

---

[API](https://skmtc.net/braintrustdata/apis/braintrust-api.md) · [All operations](https://skmtc.net/braintrustdata/apis/braintrust-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/braintrustdata/braintrust-api/revisions/9d216c8243fe/schema)
