Projects REST API Guide

List of projects

get

List of projects

Authorizations
Query parameters
filterstringOptional

Allows you to filter by any field.

searchstringOptional

Allows you to search by any field.

orderingstringOptional

Allows you to order results by any field. For desc order prefix field name with - and provide comman separated values for multiple fields

limitintegerOptional

Limit for the pagination

offsetintegerOptional

Offset for the pagination

Responses
200
List of projects
application/json
Responseall of
get
GET /v3/projects HTTP/1.1
Host: 
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "api_version": "3.0",
  "kind": "PAGINATED",
  "data": {
    "items": [
      {
        "id": "123e4567-e89b-12d3-a456-426614174000",
        "name": "text",
        "asset_type": "ML_MODEL",
        "organization": {
          "id": "123e4567-e89b-12d3-a456-426614174000",
          "name": "text"
        },
        "created_at": "2025-07-02T01:25:51.986Z",
        "updated_at": "2025-07-02T01:25:51.986Z"
      }
    ]
  }
}

Create new project

post

Create new project

Authorizations
Body

Request body for creating a project

namestringRequired

Name of the project

asset_typestring · enumRequired

Type of project

Possible values:
Responses
200
Details of the created project
application/json
Responseall of
post
POST /v3/projects HTTP/1.1
Host: 
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 39

{
  "name": "text",
  "asset_type": "ML_MODEL"
}
{
  "api_version": "3.0",
  "kind": "NORMAL",
  "data": {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "text",
    "asset_type": "ML_MODEL",
    "organization": {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "name": "text"
    },
    "created_at": "2025-07-02T01:25:51.986Z",
    "updated_at": "2025-07-02T01:25:51.986Z"
  }
}

Detail info of a project for the specified project id

get

Detail info of a project

Authorizations
Path parameters
project_idstring · uuidRequired

Path parameter for unique identifier of a project

Responses
200
Detail info of the project
application/json
Responseall of
get
GET /v3/projects/{project_id} HTTP/1.1
Host: 
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "api_version": "3.0",
  "kind": "NORMAL",
  "data": {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "text",
    "asset_type": "ML_MODEL",
    "organization": {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "name": "text"
    },
    "created_at": "2025-07-02T01:25:51.986Z",
    "updated_at": "2025-07-02T01:25:51.986Z"
  }
}

Last updated

Was this helpful?