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

Filter by project

vla_type
Any of:
string

Filter by VLA type

job_type
Any of:
string

Filter: vla, reward, vla_w_reward

search
Any of:
string
<= 200 characters

Search job description, model, or dataset

limit
Limit
integer
default: 20 >= 1 <= 1000
cursor
Any of:
string

Pagination cursor

sort
Sort
string
default: newest
Allowed values: newest oldest updated
x-api-key
Any of:
string

Paginated list of training jobs

Media type application/json
PaginatedJobsResponse
object
items
Items
Array<object>
JobItem
object
job_id
required
Job Id
string format: uuid
project_id
required
Project Id
string format: uuid
job_desc
Any of:
string
status
Any of:
string
current_phase
Any of:
string
vla_type
Any of:
string
job_type
Any of:
string
model
Any of:
string
dataset
Any of:
string
instance_type
Any of:
string
region
Any of:
string
duration_hours
Any of:
number
batch_size
Any of:
integer
use_rabc
Use Rabc
boolean
finetuned_model_id
Any of:
string
created_at
Any of:
string format: date-time
page_info
required
PageInfo
object
has_next
required
Has Next

Whether more items exist after this page

boolean
end_cursor
Any of:
string
total_count
Any of:
integer
Example
{
"items": [
{
"use_rabc": false
}
]
}

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

Invalid pagination parameters