# List Jobs - Documentation

> For the complete documentation index, see [llms.txt](/llms.txt). Markdown is available with `Accept: text/markdown` and `.md` URL variants.

Source: /docs/api-reference/gpus-v2-list-jobs

# List Jobs

GET

/

gpus

/

v2

/

jobs

Try it

List Jobs

cURL

```
curl --request GET \
--url https://api.novita.ai/gpus/v2/jobs \
--header 'Authorization: &#x3C;authorization>'
```

```
import requestsurl = "https://api.novita.ai/gpus/v2/jobs"headers = {"Authorization": "&#x3C;authorization>"}response = requests.get(url, headers=headers)print(response.text)
```

```
const options = {method: 'GET', headers: {Authorization: '&#x3C;authorization>'}};fetch('https://api.novita.ai/gpus/v2/jobs', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
```

```
&#x3C;?php$curl = curl_init();curl_setopt_array($curl, [ CURLOPT_URL => "https://api.novita.ai/gpus/v2/jobs", CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 30, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => "GET", CURLOPT_HTTPHEADER => [ "Authorization: &#x3C;authorization>" ],]);$response = curl_exec($curl);$err = curl_error($curl);curl_close($curl);if ($err) { echo "cURL Error #:" . $err;} else { echo $response;}
```

```
package mainimport (	"fmt"	"net/http"	"io")func main() {	url := "https://api.novita.ai/gpus/v2/jobs"	req, _ := http.NewRequest("GET", url, nil)	req.Header.Add("Authorization", "&#x3C;authorization>")	res, _ := http.DefaultClient.Do(req)	defer res.Body.Close()	body, _ := io.ReadAll(res.Body)	fmt.Println(string(body))}
```

```
HttpResponse&#x3C;String> response = Unirest.get("https://api.novita.ai/gpus/v2/jobs") .header("Authorization", "&#x3C;authorization>") .asString();
```

```
require 'uri'require 'net/http'url = URI("https://api.novita.ai/gpus/v2/jobs")http = Net::HTTP.new(url.host, url.port)http.use_ssl = truerequest = Net::HTTP::Get.new(url)request["Authorization"] = '&#x3C;authorization>'response = http.request(request)puts response.read_body
```

200

```
{
"data": [
{
"id": "job-id",
"type": "saveImage",
"envs": [],
"status": {
"status": "Running",
"error": "",
"message": ""
},
"log": "&#x3C;string>",
"created_at": 1714982400,
"member_id": "member-id",
"owner_id": "owner-id",
"deleted_time": 0,
"update_at": 1714982600,
"instance_id": "instance-id"
}
],
"next_cursor": "eyJpZCI6Im5leHQtcGFnZSJ9",
"has_more": true
}
```

#### Headers

[​](#parameter-authorization)

Authorization

string

required

Bearer authentication format, e.g.: `Bearer {{API_KEY}}`.

#### Query Parameters

[​](#parameter-limit)

limit

integer

Maximum number of items to return. Integer, value >= 0.

[​](#parameter-cursor)

cursor

string

Cursor returned by the previous page. Leave empty for the first request. String, length: 0-1024 characters.

[​](#parameter-job-id)

job_id

string

Filter by job ID.

[​](#parameter-type)

type

string

Filter by job type, e.g.: `saveImage`, `instanceMigrate`, `autoInstanceMigrate`.

[​](#parameter-status)

status

string

Filter by job status.

[​](#parameter-start-time)

start_time

integer

Lower bound of the creation time range. Unix timestamp.

[​](#parameter-end-time)

end_time

integer

Upper bound of the creation time range. Unix timestamp.

[​](#parameter-member-ids)

member_ids

string

Filter by creator member ID. Multiple IDs are comma-separated. Maps to `member_id` in the response.

#### Response

200 - application/json

OK

[​](#response-data)

data

object[]

Job list

Show child attributes

[​](#response-next-cursor)

next_cursor

string

Cursor for the next page. Empty when no more data

Example:

`"eyJpZCI6Im5leHQtcGFnZSJ9"`

[​](#response-has-more)

has_more

boolean

Whether more data is available

Example:

`true`

Last modified on June 23, 2026
