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
Any of:
string

List of projects with their associated jobs

Media type application/json
ProjectsListResponse

Response containing list of projects

object
data
required
Data

List of projects

Array<object>
Project

Project summary for list response

object
project_id
required
Project Id

Project ID

string format: uuid
name
required
Name

Project name

string
description
Any of:
string
created_at
required
Created At

Creation timestamp

string format: date-time
jobs
Jobs

Jobs in this project

Array<object>
Job

Job summary within a project

object
job_id
required
Job Id

Job ID

string format: uuid
name
Any of:
string
model
Any of:
string
dataset
Any of:
string
status
Any of:
string
created_at
required
Created At

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
Detail

Error message describing what went wrong

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

Validation Error

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