GET
/
v2
/
projects
/
{project_id}
/
experiments
curl --request GET \
  --url https://api.acme.rungalileo.io/v2/projects/{project_id}/experiments \
  --header 'Galileo-API-Key: <api-key>'
[
  {
    "id": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "name": "",
    "project_id": "<string>",
    "created_by": "<string>",
    "task_type": 0,
    "dataset": {
      "dataset_version_id": "<string>",
      "dataset_id": "<string>",
      "version_index": 123,
      "name": "<string>"
    },
    "aggregate_metrics": {},
    "ranking_score": 123,
    "rank": 123,
    "winner": true
  }
]

Authorizations

Galileo-API-Key
string
header
required

Path Parameters

project_id
string
required

Response

200
application/json
Successful Response
id
string
required

Galileo ID of the experiment

project_id
string
required

Galileo ID of the project associated with this experiment

task_type
enum<integer>
required

Valid task types for modeling.

We store these as ints instead of strings because we will be looking this up in the database frequently.

Available options:
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17
created_at
string

Timestamp of the experiment's creation

updated_at
string | null

Timestamp of the trace or span's last update

name
string
default:

Name of the experiment

created_by
string | null
dataset
object | null
aggregate_metrics
object
ranking_score
number | null
rank
integer | null
winner
boolean | null