List Projects
Deprecated
GET
/v1/projects
const url = 'https://example.com/v1/projects';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/v1/projectsList all projects for the current user. Deprecated: use GET /projects/list instead.
Parameters
Section titled “ Parameters ”Header Parameters
Section titled “Header Parameters ”Responses
Section titled “ Responses ”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>
ProjectProject summary for list response
object
project_id
required
Project Id
Project ID
string format: uuid
name
required
Name
Project name
string
created_at
required
Created At
Creation timestamp
string format: date-time
jobs
Jobs
Jobs in this project
Array<object>
JobJob summary within a project
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>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Example generated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example" } ]}