POST
/
v2
/
projects
/
paginated
Get Projects V2
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
}

Authorizations

Galileo-API-Key
string
header
required

Query Parameters

actions
enum<string>[]

Actions to include in the 'permissions' field.

starting_token
integer
default:0
limit
integer
default:100

Body

application/json

Response

200
application/json

Successful Response

Response model for the V2 projects paginated endpoint.