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

# List my API keys

> Returns the authenticated customer's API keys. Excludes the secret key value; use X-Hint for identification.



## OpenAPI

````yaml /api-reference/openapi.json get /api-keys
openapi: 3.0.0
info:
  title: RouteMesh API
  version: 1.0.0
  description: >-
    HTTP API for routing JSON-RPC requests across providers, managing API keys,
    and viewing usage.
  license:
    name: Proprietary
    url: https://routeme.sh
servers:
  - url: https://lb.routeme.sh
    description: Primary API endpoint
  - url: https://lb2.routeme.sh
    description: AWS DNS load balancer (backup)
security: []
tags:
  - name: RPC
    description: Forward JSON-RPC requests to the router.
  - name: Chains
    description: Discover supported chains.
  - name: API Keys
    description: Manage your API keys for self-service access.
  - name: Usage
    description: View your usage and billing data.
  - name: Health
    description: Service health checks.
paths:
  /api-keys:
    get:
      tags:
        - API Keys
      summary: List my API keys
      description: >-
        Returns the authenticated customer's API keys. Excludes the secret key
        value; use X-Hint for identification.
      operationId: listMyApiKeys
      responses:
        '200':
          description: List of API keys
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ApiKeyResponse'
        '401':
          description: Unauthorized
      security:
        - MgmtKeyAuth: []
components:
  schemas:
    ApiKeyResponse:
      type: object
      properties:
        id:
          type: integer
          description: Internal key ID (for filtering /usage).
        name:
          type: string
          nullable: true
          description: Friendly name.
        active:
          type: boolean
          description: Whether the key is active.
        allowed_domains:
          type: array
          items:
            type: string
          description: Allowed domains.
        routing_strategy:
          type: string
          enum:
            - economy
            - performance
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
      required:
        - id
        - name
        - active
        - allowed_domains
        - routing_strategy
        - created_at
        - updated_at
      additionalProperties: false
  securitySchemes:
    MgmtKeyAuth:
      type: apiKey
      in: header
      name: X-Mgmt-Key
      description: >-
        Management API key from the RouteMesh dashboard. Required for customer
        API endpoints (/api-keys, /usage). Each request also carries the
        customer's RPC API key in the URL path for the RPC endpoint.

````