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 ” x-api-key
string | null
Responses
Section titled “ Responses ”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>
ProjectProject 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>
JobJob 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>
ValidationErrorobject
loc
required
Location
Array<string | integer>
msg
required
Message
string
type
required
Error Type
string
Example generated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example" } ]}