> ## Documentation Index
> Fetch the complete documentation index at: https://docs.radion.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Get current API key info



## OpenAPI

````yaml /api/openapi.json get /auth/me
openapi: 3.1.0
info:
  title: Radion REST API
  description: Official REST API for Radion prediction market intelligence layer.
  license:
    name: ''
  version: 0.1.0
servers:
  - url: https://api.radion.app
    description: Production
security:
  - {}
  - ApiKey: []
tags:
  - name: Health
    description: Check whether the REST API is up and running.
  - name: Authentication
    description: Inspect the currently authenticated API key.
  - name: Events
    description: Events metadata.
  - name: Markets
    description: Markets metadata.
  - name: Orderbook
    description: CLOB orderbook midpoint passthrough.
  - name: Search
    description: Fuzzy search across markets, topics, and profiles.
  - name: Stats
    description: Public platform stats and indexer backfill progress.
paths:
  /auth/me:
    get:
      tags:
        - Authentication
      summary: Get current API key info
      operationId: get_api_key_info
      responses:
        '200':
          description: Metadata for the currently authenticated API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiKeyInfo'
        '401':
          $ref: '#/components/responses/UnauthorizedResponse'
        '404':
          $ref: '#/components/responses/NotFoundResponse'
        '429':
          $ref: '#/components/responses/TooManyRequestsResponse'
        '500':
          $ref: '#/components/responses/InternalServerErrorResponse'
      security:
        - ApiKey: []
components:
  schemas:
    ApiKeyInfo:
      type: object
      required:
        - keyLabel
        - plan
        - callCount
        - createdAt
        - monthlyUsage
      properties:
        callCount:
          type: integer
          format: int64
        createdAt:
          type: string
          format: date-time
        keyLabel:
          type: string
        lastUsedAt:
          type:
            - string
            - 'null'
          format: date-time
        monthlyUsage:
          $ref: '#/components/schemas/MonthlyUsage'
        plan:
          $ref: '#/components/schemas/ApiKeyPlan'
        requestsPerSecond:
          type:
            - integer
            - 'null'
          format: int32
          minimum: 0
      example:
        callCount: 42
        createdAt: '2026-04-01T12:00:00Z'
        keyLabel: production_read
        lastUsedAt: '2026-04-09T15:20:00Z'
        monthlyUsage:
          limit: 3000
          resetsAt: '2026-07-01T00:00:00Z'
          used: 120
        plan: starter
        requestsPerSecond: null
    MonthlyUsage:
      type: object
      required:
        - used
        - resetsAt
      properties:
        limit:
          type:
            - integer
            - 'null'
          format: int64
        resetsAt:
          type: string
          format: date-time
        used:
          type: integer
          format: int64
    ApiKeyPlan:
      type: string
      enum:
        - free
        - starter
        - pro
        - enterprise
    ErrorResponse:
      type: object
      required:
        - type
        - status
        - title
        - detail
        - requestId
      properties:
        detail:
          type: string
          example: Resource not found
        requestId:
          type: string
          example: 550e8400-e29b-41d4-a716-446655440000
        status:
          type: integer
          format: int32
          example: 404
          minimum: 0
        title:
          type: string
          example: Not Found
        type:
          type: string
          example: about:blank
  responses:
    UnauthorizedResponse:
      description: Missing or invalid API key.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            detail: Invalid API key
            requestId: 550e8400-e29b-41d4-a716-446655440000
            status: 401
            title: Unauthorized
            type: about:blank
    NotFoundResponse:
      description: Resource not found.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            detail: Resource not found
            requestId: 550e8400-e29b-41d4-a716-446655440000
            status: 404
            title: Not Found
            type: about:blank
    TooManyRequestsResponse:
      description: Rate limit exceeded.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            detail: Rate limit exceeded
            requestId: 550e8400-e29b-41d4-a716-446655440000
            status: 429
            title: Too Many Requests
            type: about:blank
    InternalServerErrorResponse:
      description: Unexpected server error.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            detail: Unexpected error
            requestId: 550e8400-e29b-41d4-a716-446655440000
            status: 500
            title: Internal Server Error
            type: about:blank
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: X-API-Key

````