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

# Get Llm Api Keys Status

> 🔑 Get status of all LLM provider API keys.

**Frontend Usage:**
Check which LLM providers are configured and which need API keys.

**Returns:**
- List of configured providers
- List of missing API keys with environment variable names
- Setup instructions



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /providers/llm/api-keys
openapi: 3.1.0
info:
  title: Backend - Multilingual Voice Agent System
  description: FastAPI backend for multilingual voice agents with tool use
  version: 1.0.0
servers: []
security: []
paths:
  /providers/llm/api-keys:
    get:
      tags:
        - providers
      summary: Get Llm Api Keys Status
      description: |-
        🔑 Get status of all LLM provider API keys.

        **Frontend Usage:**
        Check which LLM providers are configured and which need API keys.

        **Returns:**
        - List of configured providers
        - List of missing API keys with environment variable names
        - Setup instructions
      operationId: get_llm_api_keys_status_providers_llm_api_keys_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````