Overview
Getting Started
SDK/API
- Python SDK Reference
- TypeScript SDK Reference
How-to Guides
- Overview
- Conversational AI
- Retrieval-Augmented Generation
- Agentic AI
Cookbooks
- Use Cases
- Features
Integrations
Concepts
- Metrics
- Projects
- Logging
- Datasets
- Annotations
- Experiments
- Playground
API Reference
- health
- auth
- trace
- log_stream
- experiment
- feedback
- annotation
References
experiment
List Experiments
Retrieve all experiments for a project.
GET
/
v2
/
projects
/
{project_id}
/
experiments
curl --request GET \
--url https://api.galileo.ai/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_id": "<string>",
"version_index": 123,
"name": "<string>"
},
"aggregate_metrics": {},
"aggregate_feedback": {},
"ranking_score": 123,
"rank": 123,
"winner": true
}
]
Authorizations
Path Parameters
Response
200
application/json
Successful Response
The response is of type object[]
.
curl --request GET \
--url https://api.galileo.ai/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_id": "<string>",
"version_index": 123,
"name": "<string>"
},
"aggregate_metrics": {},
"aggregate_feedback": {},
"ranking_score": 123,
"rank": 123,
"winner": true
}
]
Assistant
Responses are generated using AI and may contain mistakes.