> ## 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 POST /endpoints/{endpoint_id}/start
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}/start:
    post:
      tags:
        - Endpoints
      summary: 엔드포인트 시작
      description: >-
        비활성 상태의 엔드포인트를 시작합니다. 조직의 크레딧 잔액이 충분해야 합니다. 레플리카 스케일링 전에 반드시 엔드포인트가
        활성화되어 있어야 합니다.
      operationId: startEndpoint
      parameters:
        - name: endpoint_id
          in: path
          required: true
          description: 엔드포인트 고유 ID
          schema:
            type: string
      responses:
        '200':
          description: 엔드포인트 시작 결과
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StartStopResponse'
              examples:
                started:
                  summary: 시작 성공
                  value:
                    endpoint_id: 51c910f7-ecde-4c6c-88f8-d8e37ca9d598
                    is_active: true
                    message: Endpoint started successfully
                already_active:
                  summary: 이미 활성 상태
                  value:
                    endpoint_id: 51c910f7-ecde-4c6c-88f8-d8e37ca9d598
                    is_active: true
                    message: Endpoint is already active
        '500':
          description: 시작 실패 (잔액 부족, 리소스 할당 실패 등)
components:
  schemas:
    StartStopResponse:
      type: object
      properties:
        endpoint_id:
          type: string
          description: 엔드포인트 고유 ID
          example: 51c910f7-ecde-4c6c-88f8-d8e37ca9d598
        is_active:
          type: boolean
          description: 작업 후 활성 상태
          example: true
        message:
          type: string
          description: 결과 메시지
          example: Endpoint started successfully
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API Key를 Bearer 토큰으로 전달합니다. 프로젝트 개요의 API 키 메뉴에서 생성할 수 있습니다.

````