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

# Get key quorum

> Get a key quorum by ID.



## OpenAPI

````yaml get /v1/key_quorums/{key_quorum_id}
openapi: 3.1.0
info:
  version: 0.0.1
  title: Privy API
  description: >-
    REST API for Privy's wallet infrastructure — provision and manage wallets
    across EVM, Solana, and Bitcoin, authenticate users, sign transactions, and
    configure programmable policies and authorization intents.
  contact:
    name: Privy
    url: https://www.privy.io/
    email: support@privy.io
servers:
  - url: https://api.privy.io
security: []
tags:
  - name: Accounts
    description: Operations related to asset accounts
  - name: Aggregations
    description: Operations related to aggregations for tracking and measuring metrics
  - name: Apps
    description: Operations related to app settings and allowlist management
  - name: Client Auth
    description: OAuth token exchange and device authorization operations
  - name: Condition Sets
    description: Operations related to condition sets
  - name: Embedded wallets
    description: Operations related to embedded wallet creation and authentication
  - name: Fiat
    description: Operations related to fiat onramping and offramping
  - name: Intents
    description: Operations related to authorization intents for wallet actions
  - name: Key quorums
    description: Operations related to key quorums
  - name: Kraken Embed
    description: >-
      Operations for Kraken Embed integration, including quotes, trades, user
      management, and portfolio operations
  - name: OAuth
    description: >-
      OAuth 2.0 endpoints including Device Authorization Grant (RFC 8628) for
      CLI and limited-input device login flows
  - name: Organizations
    description: Operations related to organization secret management
  - name: Policies
    description: Operations related to policies
  - name: Shared
    description: Common schemas shared across resources
  - name: Swaps
    description: Operations for swapping tokens within wallets
  - name: Transactions
    description: Operations related to transactions
  - name: User signers
    description: Operations related to user signers
  - name: Users
    description: Operations related to users
  - name: Wallet Actions
    description: Operations related to wallet actions
  - name: Wallets
    description: Operations related to wallets
  - name: Webhooks
    description: >-
      Webhook events that Privy sends to your configured endpoint when specific
      actions occur in your app
  - name: Yield
    description: >-
      Operations for depositing and withdrawing funds from ERC-4626 yield vaults
      (Morpho, Aave)
paths:
  /v1/key_quorums/{key_quorum_id}:
    get:
      tags:
        - Key quorums
      summary: Get key quorum
      description: Get a key quorum by ID.
      operationId: getKeyQuorum
      parameters:
        - schema:
            $ref: '#/components/schemas/KeyQuorumId'
          required: true
          name: key_quorum_id
          in: path
        - schema:
            type: string
            description: ID of your Privy app.
          required: true
          name: privy-app-id
          in: header
      responses:
        '200':
          description: Object with key quorum data.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KeyQuorum'
      security:
        - appSecretAuth: []
components:
  schemas:
    KeyQuorumId:
      type: string
      format: cuid2
      description: A unique identifier for a key quorum.
      title: KeyQuorumId
      x-stainless-model: shared.key_quorum_id
    KeyQuorum:
      type: object
      properties:
        id:
          type: string
          format: cuid2
        display_name:
          type:
            - string
            - 'null'
          maxLength: 50
        authorization_threshold:
          type:
            - number
            - 'null'
          minimum: 1
        authorization_keys:
          type: array
          items:
            $ref: '#/components/schemas/AuthorizationKey'
        user_ids:
          type:
            - array
            - 'null'
          items:
            type: string
        key_quorum_ids:
          type: array
          items:
            type: string
          minItems: 1
          maxItems: 5
          description: List of nested key quorum IDs that are members of this key quorum.
      required:
        - id
        - display_name
        - authorization_threshold
        - authorization_keys
        - user_ids
      description: A key quorum for authorizing wallet operations.
      title: KeyQuorum
      example:
        id: tb54eps4z44ed0jepousxi4n
        display_name: Prod key quorum
        authorization_threshold: 1
        authorization_keys:
          - public_key: |-
              MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEx4aoeD72yykviK+f/ckqE2CItVIG
              1rCnvC3/XZ1HgpOcMEMialRmTrqIK4oZlYd1RfxU3za/C9yjhboIuoPD3g==
            display_name: null
          - public_key: |-
              MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAErzZtQr/bMIh3Y8f9ZqseB9i/AfjQ
              hu+agbNqXcJy/TfoNqvc/Y3Mh7gIZ8ZLXQEykycx4mYSpqrxp1lBKqsZDQ==
            display_name: null
        user_ids: null
      x-stainless-model: key_quorums.key_quorum
    AuthorizationKey:
      type: object
      properties:
        public_key:
          type: string
        display_name:
          type:
            - string
            - 'null'
          maxLength: 50
      required:
        - public_key
        - display_name
      additionalProperties: false
      description: A public key authorized to sign on a key quorum.
      title: AuthorizationKey
      x-stainless-model: key_quorums.authorization_key
  securitySchemes:
    appSecretAuth:
      type: http
      scheme: basic
      description: >-
        Basic Auth header with your app ID as the username and your app secret
        as the password.

````