Skip to content

List Jobs (Paginated)

GET
/v1/jobs/list
curl --request GET \
--url 'https://example.com/v1/jobs/list?limit=20&sort=newest'

List training jobs for the current account with cursor-based pagination.

project_id

Filter by project

string | null format: uuid

Filter by project

vla_type

Filter by VLA type

string | null

Filter by VLA type

job_type

Filter: vla, reward, vla_w_reward

string | null

Filter: vla, reward, vla_w_reward

search

Search job description, model, or dataset

string | null
<= 200 characters

Search job description, model, or dataset

limit
integer
default: 20 >= 1 <= 1000
cursor

Pagination cursor

string | null

Pagination cursor

sort
string
default: newest
Allowed values: newest oldest updated
x-api-key
string | null

Paginated list of training jobs

Media type application/json
PaginatedJobsResponse
object
items
Array<object>
JobItem
object
job_id
required
string format: uuid
project_id
required
string format: uuid
job_desc
string | null
status

Latest phase status

string | null
current_phase

Latest phase name

string | null
vla_type
string | null
job_type
string | null
model
string | null
dataset
string | null
instance_type
string | null
region
string | null
duration_hours
number | null
batch_size
integer | null
use_rabc
boolean
finetuned_model_id
string | null
created_at
string | null format: date-time
page_info
required
PageInfo
object
has_next
required

Whether more items exist after this page

boolean
end_cursor

Cursor for the next page

string | null
total_count

Total matching items

integer | null
Example
{
"items": [
{
"use_rabc": false
}
]
}

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"
}

Invalid pagination parameters