> ## 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.

# 레플리카 목록 조회



## OpenAPI

````yaml openapi-ko.json GET /endpoints/{endpoint_id}/replicas
openapi: 3.1.0
info:
  title: AirCloud External API
  description: AirCloud 엔드포인트를 프로그래밍 방식으로 관리하는 REST API입니다.
  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: API Key 인증 정보 확인
  - name: Endpoints
    description: '엔드포인트 관리: 조회, 시작, 중지, 스케일링, 설정 변경'
  - name: Replicas
    description: 레플리카 상태 조회
  - name: Logs
    description: 엔드포인트 로그 조회
paths:
  /endpoints/{endpoint_id}/replicas:
    get:
      tags:
        - Replicas
      summary: 레플리카 목록 조회
      description: 특정 엔드포인트에서 현재 실행 중인 레플리카 목록을 조회합니다.
      operationId: listReplicas
      parameters:
        - name: endpoint_id
          in: path
          required: true
          description: 엔드포인트 고유 ID
          schema:
            type: string
      responses:
        '200':
          description: 레플리카 목록
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ReplicaResponse'
components:
  schemas:
    ReplicaResponse:
      type: object
      properties:
        replica_id:
          type: string
          description: 레플리카 고유 ID
          example: 2xoeq1pe
        state:
          type: string
          description: 레플리카 상태 (RUNNING, STARTING, STOPPING 등)
          example: RUNNING
        node_id:
          type: string
          nullable: true
          description: 레플리카가 실행 중인 노드 ID
        node_ip:
          type: string
          nullable: true
          description: 노드 IP 주소
          example: 100.64.0.11
        actor_id:
          type: string
          nullable: true
          description: Ray actor ID
        actor_name:
          type: string
          nullable: true
          description: Ray actor 이름
        worker_id:
          type: string
          nullable: true
          description: Ray worker ID
        pid:
          type: integer
          nullable: true
          description: 프로세스 ID
        start_time_s:
          type: number
          nullable: true
          description: 레플리카 시작 시간 (Unix timestamp, 초 단위)
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API Key를 Bearer 토큰으로 전달합니다. 프로젝트 개요의 API 키 메뉴에서 생성할 수 있습니다.

````