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

# List API Keys

> List all API keys for an organization (requires authentication)

Lists all API keys for an organization.

## Permissions

User must be **owner** or **admin**.

## Response

Returns API keys with:

* Key ID and prefix (sk\_...)
* Key name and description
* Creation date and last used
* Status (active/revoked)

**Note**: Full API key values are only shown once during creation.

## Example

```bash theme={null}
curl -X GET http://localhost:3001/api/organizations/acme-corp/api-keys \
  -H "Authorization: Bearer <token>"
```


## OpenAPI

````yaml GET /organizations/{organizationId}/api-keys
openapi: 3.1.0
info:
  title: Timbrix API
  description: >-
    REST API with OAuth2 server for managing organizations, members, and
    webhooks
  version: '1.0'
  contact: {}
servers:
  - url: http://sandbox.mintlify.com
    description: Sandbox environment
  - url: http://localhost:3001/api
    description: Local development
security: []
tags:
  - name: organizations
    description: Organization management endpoints
  - name: oauth
    description: OAuth2 authentication and authorization
  - name: webhooks
    description: Webhook configuration and delivery
  - name: users
    description: User information endpoints
  - name: api-keys
    description: API Keys management and validation
paths:
  /organizations/{organizationId}/api-keys:
    get:
      tags:
        - api-keys
      summary: List organization API keys
      description: List all API keys for an organization (requires authentication)
      operationId: ApiKeysController_listByOrganization
      parameters:
        - name: organizationId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: API keys retrieved successfully
        '401':
          description: Authentication required. Provide a valid bearer token.
        '403':
          description: Access denied. User is not a member of this organization.
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````