ℹ️ These docs are for the free version of Galileo. Documentation for current customers can be found here.
cURL
curl --request GET \ --url https://api.galileo.ai/v2/scorers/versions/{scorer_version_id}/projects \ --header 'Galileo-API-Key: <api-key>'
{ "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 }
List all projects associated with a specific scorer version.
Successful Response
Response model for the V2 projects paginated endpoint.
Was this page helpful?