> ## 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 /me
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:
  /me:
    get:
      tags:
        - Authentication
      summary: 인증 컨텍스트 조회
      description: 현재 사용 중인 API key가 어떤 organization, project, user에 매핑되어 있는지 조회합니다.
      operationId: getMe
      responses:
        '200':
          description: 인증 컨텍스트 정보
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeResponse'
        '401':
          description: API Key 누락 또는 유효하지 않음
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    MeResponse:
      type: object
      properties:
        organization_id:
          type: string
          description: API Key에 연결된 조직 ID
          example: org-0I2GoSBhwODG
        project_id:
          type: string
          description: API Key에 연결된 프로젝트 ID
          example: proj-sGF4ynUPbc8H
        api_key_id:
          type: string
          description: 인증에 사용된 API Key ID
          example: 9e9a776f-2ce6-42c9-ad70-c75936ce662b
        user_id:
          type: string
          nullable: true
          description: API Key를 생성한 사용자 ID
          example: 6377ae7c-8986-477c-ab87-7f8eb63bf785
        authenticated_via:
          type: string
          description: 인증 방식
          example: api_key
    Error:
      type: object
      properties:
        detail:
          type: string
          description: 에러 메시지
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API Key를 Bearer 토큰으로 전달합니다. 프로젝트 개요의 API 키 메뉴에서 생성할 수 있습니다.

````