Projects REST API Guide
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
400
Bad Request
application/json
500
Internal Server Error
application/json
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
Authorizations
Body
Request body for creating a project
namestringRequired
Name of the project
asset_typestring · enumRequiredPossible values:
Type of project
Responses
200
Details of the created project
application/json
Responseall of
400
Bad Request
application/json
500
Internal Server Error
application/json
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
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
400
Bad Request
application/json
404
Resource not found
application/json
500
Internal Server Error
application/json
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?