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
Integrations
Concepts
- Metrics
- Projects
- Logging
- Datasets
- Annotations
- Experiments
- Playground
API Reference
- health
- auth
- trace
- log_stream
- experiment
- feedback
- annotation
- data
- protect
- datasets
- projects
- GETGet Collaborator Roles
- POSTCreate Project
- GETGet Project
- PUTUpdate Project
- DELDelete Project
- GETList User Project Collaborators
- POSTCreate User Project Collaborators
- GETList Group Project Collaborators
- POSTCreate Group Project Collaborators
- DELDelete User Project Collaborator
- PATCHUpdate User Project Collaborator
- DELDelete Group Project Collaborator
- PATCHUpdate Group Project Collaborator
- POSTGet Projects V2
- GET
References
projects
Get Project
GET
/
v2
/
projects
/
{project_id}
curl --request GET \
--url https://api.galileo.ai/v2/projects/{project_id} \
--header 'Galileo-API-Key: <api-key>'
{
"id": "<string>",
"permissions": [],
"name": "<string>",
"created_by": "<string>",
"type": "training_inference",
"created_by_user": {
"id": "<string>",
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>"
},
"runs": [
{
"name": "<string>",
"project_id": "<string>",
"created_by": "<string>",
"num_samples": 123,
"winner": true,
"dataset_hash": "<string>",
"dataset_version_id": "<string>",
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"task_type": 0,
"last_updated_by": "<string>",
"run_tags": [
{
"key": "<string>",
"value": "<string>",
"tag_type": "<string>",
"project_id": "<string>",
"run_id": "<string>",
"created_by": "<string>",
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"example_content_id": "<string>",
"creator": {
"id": "<string>",
"permissions": [],
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"auth_method": "email",
"role": "read_only",
"email_is_verified": true,
"organization_id": "<string>",
"organization_name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
},
"logged_splits": [
"<string>"
],
"logged_inference_names": [
"<string>"
]
}
],
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"bookmark": false
}
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} \
--header 'Galileo-API-Key: <api-key>'
{
"id": "<string>",
"permissions": [],
"name": "<string>",
"created_by": "<string>",
"type": "training_inference",
"created_by_user": {
"id": "<string>",
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>"
},
"runs": [
{
"name": "<string>",
"project_id": "<string>",
"created_by": "<string>",
"num_samples": 123,
"winner": true,
"dataset_hash": "<string>",
"dataset_version_id": "<string>",
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"task_type": 0,
"last_updated_by": "<string>",
"run_tags": [
{
"key": "<string>",
"value": "<string>",
"tag_type": "<string>",
"project_id": "<string>",
"run_id": "<string>",
"created_by": "<string>",
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"example_content_id": "<string>",
"creator": {
"id": "<string>",
"permissions": [],
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"auth_method": "email",
"role": "read_only",
"email_is_verified": true,
"organization_id": "<string>",
"organization_name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
},
"logged_splits": [
"<string>"
],
"logged_inference_names": [
"<string>"
]
}
],
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"bookmark": false
}
Assistant
Responses are generated using AI and may contain mistakes.