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 instead.

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
Example generated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}