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

# List workspace API keys

> Returns metadata only. Plaintext keys are shown once when created.



## OpenAPI

````yaml /openapi/traseq-public-agent.json get /workspaces/{workspaceId}/api-keys
openapi: 3.0.0
info:
  title: Traseq Agent API
  description: >-
    Public, versioned API for external integrations and AI agents. Includes API
    key management and machine-readable OpenAPI.
  version: 1.0.0
  contact: {}
servers: []
security: []
tags:
  - name: API Keys
    description: Workspace-scoped API key management
  - name: Agent API
    description: Public API for external integrations and AI agents
paths:
  /workspaces/{workspaceId}/api-keys:
    get:
      tags:
        - API Keys
      summary: List workspace API keys
      description: Returns metadata only. Plaintext keys are shown once when created.
      operationId: PublicOpenApiApiKeysController_list
      parameters:
        - name: workspaceId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: Workspace API key list
      security:
        - supabase-jwt: []
components:
  securitySchemes:
    supabase-jwt:
      scheme: bearer
      bearerFormat: JWT
      type: http

````