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

# List API keys for an organization

> List API keys for an organization.



## OpenAPI

````yaml https://api.arklow.io/swagger/ui/json post /v1/orgs/{org_id}/keys/list
openapi: 3.1.0
info:
  title: Arklow
  description: Arklow's API
  version: 0.1.0
servers:
  - url: https://api.arklow.io
    description: Production
  - url: http://localhost:3123
    description: Local development
security:
  - apiKey: []
tags:
  - name: actions
  - name: api_keys
  - name: billing
  - name: config
  - name: credentials
  - name: destinations
  - name: invites
  - name: members
  - name: metrics
  - name: notifications
  - name: orgs
  - name: rules
  - name: sources
  - name: users
  - name: ingress
externalDocs:
  url: https://api.arklow.io/swagger/ui
paths:
  /v1/orgs/{org_id}/keys/list:
    post:
      tags:
        - api_keys
      summary: List API keys for an organization
      description: List API keys for an organization.
      operationId: post_v1_orgs_by_org_id_keys_list
      parameters:
        - schema:
            type: string
            pattern: ^[0-9]+$
          in: path
          name: org_id
          required: true
          description: Organization identifier
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
                - take
                - skip
              properties:
                take:
                  type: integer
                  description: Number of records to fetch
                  minimum: 1
                  maximum: 20
                skip:
                  type: integer
                  description: Number of records to skip
                  minimum: 0
                count_only:
                  type: boolean
        required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                  - errors
                properties:
                  data:
                    anyOf:
                      - type: object
                        required:
                          - items
                          - count
                        properties:
                          items:
                            type: array
                            items:
                              type: object
                              required:
                                - id
                                - org_id
                                - member_id
                                - deleted_at
                              properties:
                                id:
                                  type: string
                                  description: API key identifier
                                org_id:
                                  type: string
                                  description: Organization identifier
                                member_id:
                                  type: string
                                  description: Organization membership identifier
                                user_id:
                                  type: string
                                  description: User identifier
                                description:
                                  anyOf:
                                    - type: 'null'
                                    - type: string
                                      description: API key description
                                membership:
                                  type: object
                                  required:
                                    - user_id
                                    - permissions
                                  properties:
                                    user_id:
                                      type: string
                                      description: User identifier
                                    permissions:
                                      type: array
                                      items:
                                        type: string
                                deleted_at:
                                  anyOf:
                                    - type: 'null'
                                    - type: string
                                      format: date-time
                          count:
                            type: integer
                      - type: 'null'
                  errors:
                    anyOf:
                      - type: array
                        items:
                          type: object
                          required:
                            - code
                            - message
                          properties:
                            code:
                              type: string
                            message:
                              type: string
                      - type: 'null'
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-arklow-auth
      in: header

````