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

# List API keys (redacted)



## OpenAPI

````yaml GET /api/v1/operator/keys
openapi: 3.0.0
info:
  title: AgentChain & PRIOR API
  description: The centralized gateway for the decentralized compute network.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.agentchain.xyz
    description: Production
security: []
tags: []
paths:
  /api/v1/operator/keys:
    get:
      tags:
        - operator
      summary: List API keys (redacted)
      operationId: OperatorController_listKeys
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ApiKeyRecordDto'
      security:
        - bearer: []
components:
  schemas:
    ApiKeyRecordDto:
      type: object
      properties:
        id:
          type: string
        label:
          type: string
          nullable: true
          description: User-defined label
        keyPrefix:
          type: string
          example: ac_ab12...cd34
          description: Prefix for display — never the full key
        rateLimitRpm:
          type: number
          description: Requests per minute limit
        lastUsedAt:
          type: string
          nullable: true
        createdAt:
          type: string
        isTestKey:
          type: boolean
          description: >-
            True for system-generated diagnostic test keys — excluded from tier
            limit count
        testUsesRemaining:
          type: number
          nullable: true
          description: Remaining uses for test keys; null for production keys
      required:
        - id
        - label
        - keyPrefix
        - rateLimitRpm
        - lastUsedAt
        - createdAt
        - isTestKey
        - testUsesRemaining
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````