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

# List SSH keys for current user



## OpenAPI

````yaml get /api/ssh-keys
openapi: 3.0.3
info:
  title: Momanic Public API
  version: 0.1.0
  description: |
    Public API for account, infrastructure, and support operations.
    This spec intentionally excludes payment and checkout flows.
servers:
  - url: https://my.momanic.com
    description: Production
security: []
tags:
  - name: Auth
  - name: API Keys
  - name: Products
  - name: Services
  - name: SSH Keys
  - name: Notifications
  - name: Support
paths:
  /api/ssh-keys:
    get:
      tags:
        - SSH Keys
      summary: List SSH keys for current user
      parameters:
        - in: query
          name: region
          required: false
          schema:
            type: string
      responses:
        '200':
          description: SSH keys
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SshKey'
      security:
        - BearerAuth: []
components:
  schemas:
    SshKey:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        fingerprint:
          type: string
        region:
          type: string
        createdAt:
          type: string
          format: date-time
          nullable: true
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Bearer token (access token or API key)

````