Skip to main content
GET
/
endpoints
/
{endpoint_id}
/
replicas
List Replicas
curl --request GET \
  --url https://external.aieev.cloud:5007/external/api/v1/endpoints/{endpoint_id}/replicas \
  --header 'Authorization: Bearer <token>'
[
  {
    "replica_id": "2xoeq1pe",
    "state": "RUNNING",
    "node_id": "<string>",
    "node_ip": "100.64.0.11",
    "actor_id": "<string>",
    "actor_name": "<string>",
    "worker_id": "<string>",
    "pid": 123,
    "start_time_s": 123
  }
]

Authorizations

Authorization
string
header
required

Pass your API key as a Bearer token. Create API keys in the project overview.

Path Parameters

endpoint_id
string
required

Unique endpoint ID.

Response

200 - application/json

List of replicas.

replica_id
string

Unique replica ID.

Example:

"2xoeq1pe"

state
string

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

Example:

"RUNNING"

node_id
string | null

Node ID where the replica is running.

node_ip
string | null

Node IP address.

Example:

"100.64.0.11"

actor_id
string | null

Ray actor ID.

actor_name
string | null

Ray actor name.

worker_id
string | null

Ray worker ID.

pid
integer | null

Process ID.

start_time_s
number | null

Replica start time (Unix timestamp in seconds).