> ## 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
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:
    get:
      tags:
        - Endpoints
      summary: 엔드포인트 목록 조회
      description: 현재 API key로 접근 가능한 엔드포인트 목록을 페이지네이션으로 조회합니다.
      operationId: listEndpoints
      parameters:
        - name: search
          in: query
          description: 엔드포인트 이름으로 검색
          schema:
            type: string
            example: my-model
        - name: is_active
          in: query
          description: 활성 상태로 필터링. `true`면 실행 중인 엔드포인트만, `false`면 중지된 엔드포인트만 반환
          schema:
            type: boolean
            example: true
        - name: page
          in: query
          description: 페이지 번호. 1부터 시작
          schema:
            type: integer
            minimum: 1
            default: 1
        - name: size
          in: query
          description: 페이지당 항목 수. 최소 1, 최대 2000
          schema:
            type: integer
            minimum: 1
            maximum: 2000
            default: 50
      responses:
        '200':
          description: 엔드포인트 목록
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EndpointListResponse'
        '401':
          description: API Key 누락 또는 유효하지 않음
components:
  schemas:
    EndpointListResponse:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/EndpointListItem'
          description: 엔드포인트 객체 배열
        total:
          type: integer
          description: 전체 엔드포인트 수
          example: 5
        page:
          type: integer
          description: 현재 페이지 번호
          example: 1
        size:
          type: integer
          description: 페이지당 항목 수
          example: 50
        pages:
          type: integer
          description: 전체 페이지 수
          example: 1
    EndpointListItem:
      type: object
      properties:
        id:
          type: string
          description: 엔드포인트 고유 ID
          example: cad59665-b77b-4cb6-9308-d276294bce79
        name:
          type: string
          description: 엔드포인트 이름
          example: my-llm-endpoint
        endpoint_type:
          type: string
          description: 엔드포인트 유형
          example: container
        is_active:
          type: boolean
          description: 현재 활성(실행 중) 여부
          example: true
        status:
          type: string
          description: 현재 상태 (RUNNING, STOPPED, DEPLOYING 등)
          example: RUNNING
        num_replicas:
          type: integer
          description: 현재 레플리카 수
          example: 2
        enable_autoscaling:
          type: boolean
          description: 오토스케일링 활성화 여부
          example: false
        instance_type_name:
          type: string
          nullable: true
          description: 할당된 인스턴스 타입 이름
          example: RTX 4070 Super
        serving_endpoint_url:
          type: string
          nullable: true
          description: 엔드포인트 공개 URL
          example: https://ap-1.aieev.cloud/ac/7/cad59665-b77b-4cb6-9308-d276294bce79
        created_at:
          type: string
          format: date-time
          description: 생성 시간 (ISO 8601)
        updated_at:
          type: string
          format: date-time
          description: 수정 시간 (ISO 8601)
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API Key를 Bearer 토큰으로 전달합니다. 프로젝트 개요의 API 키 메뉴에서 생성할 수 있습니다.

````