List Jobs (Paginated)
GET
/v1/jobs/list
const url = 'https://example.com/v1/jobs/list?limit=20&sort=newest';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/jobs/list?limit=20&sort=newest'List training jobs for the current account with cursor-based pagination.
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” 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
Search job description, model, or dataset
limit
integer
cursor
Pagination cursor
string | null
Pagination cursor
sort
string
Header Parameters
Section titled “Header Parameters ” x-api-key
string | null
Responses
Section titled “ Responses ”Paginated list of training jobs
Media type application/json
PaginatedJobsResponse
object
items
Array<object>
JobItemobject
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