GET
/
v5
/
evaluations
curl --request GET \
  --url https://api.egp.scale.com/v5/evaluations \
  --header 'x-api-key: <api-key>'
{
  "object": "list",
  "items": [
    {
      "id": "<string>",
      "object": "evaluation",
      "name": "<string>",
      "description": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "created_by_user_id": "<string>",
      "archived_at": "2023-11-07T05:31:56Z",
      "tags": [
        "<string>"
      ],
      "datasets": [
        {
          "id": "<string>",
          "object": "dataset",
          "name": "<string>",
          "description": "<string>",
          "created_at": "2023-11-07T05:31:56Z",
          "created_by_user_id": "<string>",
          "archived_at": "2023-11-07T05:31:56Z",
          "tags": [
            "<string>"
          ],
          "current_version_num": 123
        }
      ],
      "status": "failed",
      "tasks": [
        {
          "task_type": "chat_completion",
          "alias": "<string>",
          "configuration": {
            "top_k": 123,
            "frequency_penalty": 123,
            "function_call": {},
            "functions": [
              {}
            ],
            "logit_bias": {},
            "logprobs": true,
            "max_completion_tokens": 123,
            "max_tokens": 123,
            "metadata": {},
            "modalities": [
              "<string>"
            ],
            "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": [
              {}
            ],
            "top_logprobs": 123,
            "top_p": 123,
            "audio": {},
            "model": "<string>",
            "messages": [
              {}
            ]
          }
        }
      ]
    }
  ],
  "limit": 100,
  "total": 123,
  "has_more": true
}

Authorizations

x-api-key
string
header
required

Query Parameters

include_archived
boolean
default:false
views
enum<string>[]
Available options:
tasks
starting_after
string | null
ending_before
string | null
limit
integer
default:100
Required range: 1 <= x <= 1000

Response

200
application/json
Successful Response
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
enum<string>
default:list
Available options:
list
limit
integer
default:100

The maximum number of items to return.