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

# List SSH keys

> Returns SSH public keys for your organization. Response shape: `{ data: ComputeSshKey[] }`. Requires compute `read` access.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/gpu/ssh-keys
openapi: 3.0.3
info:
  title: AI Reserve Gateway API
  description: >-
    The AI Reserve API surface — OpenAI-compatible chat completions,
    Anthropic-compatible messages, Bedrock Converse, images, video, files,
    text-to-speech, realtime voice sessions, and GPU Compute pod/volume
    management — all behind one endpoint and one API key.
  version: 1.0.0
servers:
  - url: https://api.aireserve.com
security:
  - bearerAuth: []
paths:
  /v1/gpu/ssh-keys:
    get:
      tags:
        - GPU Compute
      summary: List SSH keys
      description: >-
        Returns SSH public keys for your organization. Response shape: `{ data:
        ComputeSshKey[] }`. Requires compute `read` access.
      responses:
        '200':
          description: SSH key list.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/ComputeSshKey'
components:
  schemas:
    ComputeSshKey:
      type: object
      description: An SSH public key associated with your organization.
      required:
        - id
        - name
        - fingerprint
        - createdAt
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        fingerprint:
          type: string
          description: SHA-256 fingerprint in the form `SHA256:...`.
        publicKey:
          type: string
          description: The OpenSSH public key string.
        state:
          type: string
          enum:
            - active
            - revoked
        createdAt:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Your AI Reserve API key (aireserve_api_…) from the API Keys page in the
        portal (https://portal.aireserve.com/keys).

````