> ## Documentation Index
> Fetch the complete documentation index at: https://docs.aieev.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Replicas



## OpenAPI

````yaml openapi.json GET /endpoints/{endpoint_id}/replicas
openapi: 3.1.0
info:
  title: AirCloud External API
  description: Public REST API for managing AirCloud endpoints programmatically.
  version: 1.0.0
  contact:
    name: support
    url: https://aieev.com
    email: support@aieev.cloud
servers:
  - url: https://external.aieev.cloud:5007/external/api/v1
security:
  - bearerAuth: []
tags:
  - name: Authentication
    description: Verify API key context.
  - name: Endpoints
    description: 'Manage endpoints: list, start, stop, scale, and patch.'
  - name: Replicas
    description: View live replica status.
  - name: Logs
    description: Access endpoint log files.
paths:
  /endpoints/{endpoint_id}/replicas:
    get:
      tags:
        - Replicas
      summary: List Replicas
      description: Returns live replica details for an active endpoint.
      operationId: listReplicas
      parameters:
        - name: endpoint_id
          in: path
          required: true
          description: Unique endpoint ID.
          schema:
            type: string
      responses:
        '200':
          description: List of replicas.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ReplicaResponse'
components:
  schemas:
    ReplicaResponse:
      type: object
      properties:
        replica_id:
          type: string
          description: Unique replica ID.
          example: 2xoeq1pe
        state:
          type: string
          description: Replica state (RUNNING, STARTING, STOPPING, etc.).
          example: RUNNING
        node_id:
          type: string
          nullable: true
          description: Node ID where the replica is running.
        node_ip:
          type: string
          nullable: true
          description: Node IP address.
          example: 100.64.0.11
        actor_id:
          type: string
          nullable: true
          description: Ray actor ID.
        actor_name:
          type: string
          nullable: true
          description: Ray actor name.
        worker_id:
          type: string
          nullable: true
          description: Ray worker ID.
        pid:
          type: integer
          nullable: true
          description: Process ID.
        start_time_s:
          type: number
          nullable: true
          description: Replica start time (Unix timestamp in seconds).
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Pass your API key as a Bearer token. Create API keys in the project
        overview.

````