Skip to main content
GET
/
v5
/
evaluation-groups
List Evaluation Groups
curl --request GET \
  --url https://api.egp.scale.com/v5/evaluation-groups \
  --header 'x-api-key: <api-key>'
{
  "object": "list",
  "items": [
    {
      "id": "<string>",
      "object": "evaluation_group",
      "tags": [
        "<string>"
      ],
      "name": "<string>",
      "description": "<string>",
      "evaluation_group_metadata": {},
      "created_at": "2023-11-07T05:31:56Z",
      "deleted_at": "2023-11-07T05:31:56Z",
      "account_id": "<string>",
      "members": [
        {
          "id": "<string>",
          "object": "evaluation",
          "name": "<string>",
          "description": "<string>",
          "created_at": "2023-11-07T05:31:56Z",
          "archived_at": "2023-11-07T05:31:56Z",
          "created_by": {
            "id": "<string>",
            "object": "<string>",
            "type": "user"
          },
          "tags": [
            "<string>"
          ],
          "datasets": [
            {
              "id": "<string>",
              "object": "dataset",
              "created_by": {
                "id": "<string>",
                "object": "<string>",
                "type": "user"
              },
              "name": "<string>",
              "description": "<string>",
              "created_at": "2023-11-07T05:31:56Z",
              "archived_at": "2023-11-07T05:31:56Z",
              "tags": [
                "<string>"
              ],
              "current_version_num": 123
            }
          ],
          "status": "failed",
          "status_reason": "<string>",
          "progress": {
            "workflows": {
              "total": 123,
              "completed": 123,
              "failed": 123,
              "pending": 123
            },
            "items": {
              "total": 123,
              "successful": 123,
              "failed": 123,
              "pending": 123,
              "failed_items": []
            }
          },
          "tasks": [
            {
              "task_type": "chat_completion",
              "alias": "chat_completion",
              "configuration": {
                "top_k": 123,
                "frequency_penalty": 123,
                "function_call": {},
                "functions": [
                  "<any>"
                ],
                "logit_bias": {},
                "logprobs": true,
                "max_completion_tokens": 123,
                "max_tokens": 123,
                "metadata": {},
                "modalities": [
                  "<any>"
                ],
                "n": 123,
                "parallel_tool_calls": true,
                "prediction": {},
                "presence_penalty": 123,
                "reasoning_effort": "<string>",
                "response_format": {},
                "seed": 123,
                "stop": "<string>",
                "store": true,
                "temperature": 123,
                "tool_choice": "<string>",
                "tools": [
                  "<any>"
                ],
                "top_logprobs": 123,
                "top_p": 123,
                "audio": {},
                "model": "<string>",
                "messages": [
                  "<any>"
                ]
              }
            }
          ],
          "metadata": {}
        }
      ],
      "row_identifiers": [
        {
          "object": "evaluation_group.row_identifier",
          "evaluation_id": "<string>",
          "column_name": "<string>"
        }
      ]
    }
  ],
  "limit": 100,
  "total": 123,
  "has_more": true
}

Authorizations

x-api-key
string
header
required

Headers

x-selected-account-id
string | null

Query Parameters

include_deleted
boolean
default:false
tags
string[] | null
name
string | null
starting_after
string | null
ending_before
string | null
limit
integer
default:100
Required range: 1 <= x <= 1000
sort_order
enum<string> | null
default:asc
Available options:
asc,
desc

Response

Successful Response

items
Items · object[]
required
total
integer
required

The total of items that match the query. This is greater than or equal to the number of items returned.

has_more
boolean
required

Whether there are more items left to be fetched.

object
string
default:list
Allowed value: "list"
limit
integer
default:100

The maximum number of items to return.