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

# List Keys

> List saved API keys for the current user.



## OpenAPI

````yaml /api-reference/openapi.json get /api/saved-api-keys
openapi: 3.1.0
info:
  title: apowerb API
  description: REST API of the apowerb agentic framework (open-source edition).
  version: 0.1.2
  license:
    name: MIT
    url: https://github.com/apowerb/apowerb/blob/main/LICENSE
servers:
  - url: https://api.example.com
    description: Your apowerb instance
  - url: http://localhost:8000
    description: Local stack
security: []
paths:
  /api/saved-api-keys:
    get:
      tags:
        - api-keys
      summary: List Keys
      description: List saved API keys for the current user.
      operationId: list_keys_api_saved_api_keys_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````

## Related topics

- [Remove Key](/api-reference/api-keys/remove-key.md)
- [Create Key](/api-reference/api-keys/create-key.md)
- [List charts](/api-reference/charts/list-charts.md)
- [Update a key-value component's content](/api-reference/dashboards/update-a-key-value-components-content.md)
- [List Files](/api-reference/files/list-files.md)
