v1

latestOpenAPI 3.0.02026-07-141,4077,1665.2 MB
Model Lab API

List Model Lab projects

List all Model Lab projects for the current organization.

get/api/v2/model-lab-api/projects

Query parameters

filterstring

Text search filter for project name or description.

filter[owner_id]string uuid

Filter by owner UUID.

filter[tags]string

Filter by tags. Format: key:value,key2:value2.

sortstring

Sort field. Valid values: name, created_at, updated_at. Prefix with '-' for descending order (e.g., -updated_at).

page[size]integer

Number of items per page. Maximum is 100.

page[number]integer

Page number (1-indexed).

Response

OK

Example response

{
  "data": [
    {
      "attributes": {
        "artifact_storage_location": "s3://bucket/active-project",
        "created_at": "2024-01-20T10:00:00Z",
        "description": "A machine learning training project.",
        "name": "active-project",
        "tags": [
          {
            "key": "model",
            "value": "opus"
          }
        ],
        "updated_at": "2024-01-20T11:00:00Z"
      },
      "id": "2",
      "type": "projects"
    }
  ],
  "meta": {
    "page": {
      "number": 1,
      "size": 25,
      "total": 100
    }
  }
}