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

# Get API Key Context



## OpenAPI

````yaml openapi.json GET /me
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:
  /me:
    get:
      tags:
        - Authentication
      summary: Get API Key Context
      description: >-
        Returns the organization, project, and user mapped to the current API
        key.
      operationId: getMe
      responses:
        '200':
          description: Authenticated context information.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeResponse'
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    MeResponse:
      type: object
      properties:
        organization_id:
          type: string
          description: Organization ID linked to the API key.
          example: org-0I2GoSBhwODG
        project_id:
          type: string
          description: Project ID linked to the API key.
          example: proj-sGF4ynUPbc8H
        api_key_id:
          type: string
          description: API key ID used for authentication.
          example: 9e9a776f-2ce6-42c9-ad70-c75936ce662b
        user_id:
          type: string
          nullable: true
          description: User ID who created the API key.
          example: 6377ae7c-8986-477c-ab87-7f8eb63bf785
        authenticated_via:
          type: string
          description: Authentication method.
          example: api_key
    Error:
      type: object
      properties:
        detail:
          type: string
          description: Error message.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Pass your API key as a Bearer token. Create API keys in the project
        overview.

````