Skip to content

List Projects

Deprecated
GET
/v1/projects
curl --request GET \
--url https://example.com/v1/projects

List all projects for the current user. Deprecated: use GET /projects/list.

Historically this endpoint enriched each project with the legacy training.jobs rows for that project. After QUA-1005 the new run model lives on pipeline-api (pipeline.runs); this deprecated route now returns projects with an empty jobs list. Callers wanting job state should call /v1/projects/list and follow the per-run links on pipeline-api directly.

x-api-key
string | null

List of projects with their associated jobs

Media type application/json
ProjectsListResponse

Response containing list of projects

object
data
required

List of projects

Array<object>
Project

Project summary for list response

object
project_id
required

Project ID

string format: uuid
name
required

Project name

string
description

Project description

string | null
created_at
required

Creation timestamp

string format: date-time
jobs

Jobs in this project

Array<object>
Job

Job summary within a project

object
job_id
required

Job ID

string format: uuid
name

Job name/description

string | null
model

Model being fine-tuned

string | null
dataset

Dataset used for training

string | null
status

Current job status

string | null
created_at
required

Creation timestamp

string format: date-time
Example generated
{
"data": [
{
"project_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"name": "example",
"description": "example",
"created_at": "2026-04-15T12:00:00Z",
"jobs": [
{
"job_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"name": "example",
"model": "example",
"dataset": "example",
"status": "example",
"created_at": "2026-04-15T12:00:00Z"
}
]
}
]
}

Invalid or missing API key

Media type application/json
ErrorResponse

Standard error response.

object
detail
required

Error message describing what went wrong

string
Example generated
{
"detail": "example"
}

Validation Error

Media type application/json
HTTPValidationError
object
detail
Array<object>
ValidationError
object
loc
required
Location
Array<string | integer>
msg
required
Message
string
type
required
Error Type
string
input
ctx
Context
object
Example generated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example",
"input": "example",
"ctx": {}
}
]
}