> ## Documentation Index
> Fetch the complete documentation index at: https://monitor-f3599674.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# List organization API keys



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/orgs/{orgId}/api-keys
openapi: 3.1.0
info:
  title: Monitor Platform API
  version: 1.0.0
  summary: >-
    Programmatic API for uptime monitoring, incidents, alerting, organization
    management, and auth.
  description: >-
    This document covers the public `/api/v1` surface exposed by the Monitor
    platform. Organization resource routes support either the `auth-token`
    session cookie or an organization-scoped API key where documented.
servers:
  - url: https://monitor.aevr.space
    description: Current environment
security: []
tags:
  - name: Auth
    description: User registration and authentication flows.
  - name: Organizations
    description: Organization discovery and switching.
  - name: Monitors
    description: Uptime monitor CRUD and manual checks.
  - name: Incidents
    description: Incident history for an organization.
  - name: Alert Channels
    description: Notification channel management.
  - name: Members
    description: Organization membership management.
  - name: Status Page
    description: Public status page configuration.
  - name: Invites
    description: Organization invite token access.
  - name: API Keys
    description: Organization API key lifecycle management.
  - name: User
    description: Referral and user-specific resources.
  - name: PayID
    description: PayID OAuth and KYC integration routes.
  - name: System
    description: Internal system automation and error reporting.
paths:
  /api/v1/orgs/{orgId}/api-keys:
    get:
      tags:
        - API Keys
      summary: List organization API keys
      operationId: listApiKeys
      parameters:
        - in: path
          name: orgId
          required: true
          schema:
            type: string
      responses:
        '200':
          description: API keys loaded
      security:
        - sessionCookieAuth: []
components:
  securitySchemes:
    sessionCookieAuth:
      type: apiKey
      in: cookie
      name: auth-token
      description: Signed session cookie returned by the platform auth flows.

````