---
title: "Create key quorum"
method: POST
path: "/v1/key_quorums"
tags: ["Key quorums"]
---

# Create key quorum

`POST /v1/key_quorums`

Create a new key quorum.

## Headers

- `privy-app-id` string, required — ID of your Privy app.

## Request body

- KeyQuorumCreateRequestBody — Request input for creating a key quorum. At least one of `user_ids`, `public_keys`, or `key_quorum_ids` is required.
  - `authorization_threshold` number — The number of keys that must sign for an action to be valid. Must be less than or equal to total number of key quorum members.
  - `display_name` string
  - `key_quorum_ids` string[] — List of key quorum IDs that should be members of this key quorum. Key quorums can only be nested 1 level deep. At least one of `user_ids`, `public_keys`, or `key_quorum_ids` is required.
  - `public_keys` string[] — List of P-256 public keys of the keys that should be authorized to sign on the key quorum, in base64-encoded DER format. At least one of `user_ids`, `public_keys`, or `key_quorum_ids` is required.
  - `user_ids` string[] — List of user IDs of the users that should be authorized to sign on the key quorum. At least one of `user_ids`, `public_keys`, or `key_quorum_ids` is required.

## Response `200`

Newly created key quorum.

- KeyQuorum — A key quorum for authorizing wallet operations.
  - `authorization_keys` AuthorizationKey[], required
    - `display_name` string, nullable, required
    - `public_key` string, required
  - `authorization_threshold` number, nullable, required
  - `display_name` string, nullable, required
  - `id` string, cuid2, required
  - `key_quorum_ids` string[] — List of nested key quorum IDs that are members of this key quorum.
  - `user_ids` string[], nullable, required

---

[API](https://skmtc.net/privy-io/apis/privy-api.md) · [All operations](https://skmtc.net/privy-io/apis/privy-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/privy-io/privy-api/revisions/bb2eb34156cc/schema)
