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

# Get Api Keys

> Get all configured API keys from Gateway.

Returns a dict mapping provider name to API key value.
Example response:
{
    "helius": "46951ec2-16af-4fc0-a5df-970b0eb925b7",
    "infura": "920646320ec3463fa1b5235be9fa48d3",
    "coingecko": "CG-Rw786jTpNmV1MvRrqpDAHR6r",
    "etherscan": ""
}



## OpenAPI

````yaml /api-reference/openapi.json get /gateway/apiKeys
openapi: 3.1.0
info:
  title: Hummingbot API
  description: API for managing Hummingbot trading instances
  version: 1.0.1
servers:
  - url: http://localhost:8000
    description: Local development server
security: []
paths:
  /gateway/apiKeys:
    get:
      tags:
        - Gateway
      summary: Get Api Keys
      description: |-
        Get all configured API keys from Gateway.

        Returns a dict mapping provider name to API key value.
        Example response:
        {
            "helius": "46951ec2-16af-4fc0-a5df-970b0eb925b7",
            "infura": "920646320ec3463fa1b5235be9fa48d3",
            "coingecko": "CG-Rw786jTpNmV1MvRrqpDAHR6r",
            "etherscan": ""
        }
      operationId: get_api_keys_gateway_apiKeys_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response Get Api Keys Gateway Apikeys Get
      security:
        - HTTPBasic: []
components:
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````