ℹ️ These docs are for the free version of Galileo. Documentation for current customers can be found here.
curl --request POST \
--url https://api.galileo.ai/v2/projects/paginated \
--header 'Content-Type: application/json' \
--header 'Galileo-API-Key: <api-key>' \
--data '{
"filters": [
{
"name": "name",
"operator": "eq",
"value": "<string>",
"case_sensitive": true
}
],
"sort": {
"name": "name",
"ascending": true,
"sort_type": "column"
}
}'
{
"starting_token": 0,
"limit": 100,
"paginated": false,
"next_starting_token": 123,
"projects": [
{
"id": "<string>",
"permissions": [],
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"bookmark": false,
"num_logstreams": 123,
"num_experiments": 123,
"created_by_user": {
"id": "<string>",
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>"
},
"description": "<string>",
"labels": [
"sample"
]
}
],
"total_count": 123
}
Gets projects optimized for V2 with pagination and server-side run counts.
curl --request POST \
--url https://api.galileo.ai/v2/projects/paginated \
--header 'Content-Type: application/json' \
--header 'Galileo-API-Key: <api-key>' \
--data '{
"filters": [
{
"name": "name",
"operator": "eq",
"value": "<string>",
"case_sensitive": true
}
],
"sort": {
"name": "name",
"ascending": true,
"sort_type": "column"
}
}'
{
"starting_token": 0,
"limit": 100,
"paginated": false,
"next_starting_token": 123,
"projects": [
{
"id": "<string>",
"permissions": [],
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"bookmark": false,
"num_logstreams": 123,
"num_experiments": 123,
"created_by_user": {
"id": "<string>",
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>"
},
"description": "<string>",
"labels": [
"sample"
]
}
],
"total_count": 123
}
Actions to include in the 'permissions' field.
Show child attributes
Successful Response
Response model for the V2 projects paginated endpoint.
Was this page helpful?