> ## 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 registry credentials

> Returns registry credential metadata for your organization. Credential secrets (passwords/tokens) are never returned. Response shape: `{ data: ComputeRegistry[] }`. Requires compute `read` access.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/gpu/registries
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/registries:
    get:
      tags:
        - GPU Compute
      summary: List registry credentials
      description: >-
        Returns registry credential metadata for your organization. Credential
        secrets (passwords/tokens) are never returned. Response shape: `{ data:
        ComputeRegistry[] }`. Requires compute `read` access.
      responses:
        '200':
          description: Registry credential list.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/ComputeRegistry'
components:
  schemas:
    ComputeRegistry:
      type: object
      description: Registry credential metadata. The password/token is never returned.
      required:
        - id
        - name
        - registryUrl
        - username
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        registryUrl:
          type: string
          description: Registry hostname (e.g. `registry.example.com`).
        username:
          type: string
        status:
          type: string
          enum:
            - rotating
            - active
            - failed
          description: Credential provisioning state.
        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).

````