v1

latestOpenAPI 3.1.02026-07-26101317.6 KB
Replicas

List Replicas

Returns live replica details for an active endpoint.

get/endpoints/{endpoint_id}/replicas

Path parameters

endpoint_idstring required

Unique endpoint ID.

Response

List of replicas.

replica_idstring

Unique replica ID.

statestring

Replica state (RUNNING, STARTING, STOPPING, etc.).

node_idstring nullable

Node ID where the replica is running.

node_ipstring nullable

Node IP address.

actor_idstring nullable

Ray actor ID.

actor_namestring nullable

Ray actor name.

worker_idstring nullable

Ray worker ID.

pidinteger nullable

Process ID.

start_time_snumber nullable

Replica start time (Unix timestamp in seconds).

Example response

[
  {
    "replica_id": "2xoeq1pe",
    "state": "RUNNING",
    "node_ip": "100.64.0.11"
  }
]