Skip to main content
GET
/
api
/
jobs
List jobs
curl --request GET \
  --url http://{host}:{port}/api/jobs/
[
  {
    "type": "SUBMISSION",
    "job_id": "<string>",
    "submission_id": "<string>",
    "driver_info": {
      "id": "<string>",
      "node_ip_address": "<string>",
      "pid": "<string>"
    },
    "status": "PENDING",
    "entrypoint": "<string>",
    "message": "<string>",
    "error_type": "<string>",
    "start_time": 123,
    "end_time": 123,
    "metadata": {},
    "runtime_env": {}
  }
]

Documentation Index

Fetch the complete documentation index at: https://ray-preview.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Response

200 - application/json

Job list

type
enum<string>
Available options:
SUBMISSION,
DRIVER
job_id
string | null
submission_id
string
driver_info
object
status
enum<string>

Lifecycle state of a job.

Available options:
PENDING,
RUNNING,
STOPPED,
SUCCEEDED,
FAILED
entrypoint
string
message
string | null
error_type
string | null
start_time
integer<int64>

Epoch milliseconds

end_time
integer<int64> | null
metadata
object
runtime_env
object