---
title: "List keys"
method: GET
path: "/api/v2/{coin}/key"
tags: ["Key"]
---

# List keys

`GET /api/v2/{coin}/key`

## Path parameters

- `coin` string, required — A cryptocurrency or token ticker symbol.

## Response `200`

OK

- KeysResponse
  - `keys` union[], required
    - union
      - Key
        - `encryptedPrv` string — The encrypted private key
        - `id` string, required
        - `isBitGo` boolean — True, if this key is owned by BitGo
        - `source` 'backup' | 'bitgo' | 'cold' | 'user'
        - `type` 'tss' | 'independent', required — A value from a string enum denoting what kind of key this is. Defaults to “independent” indicating an on-chain key is requested. If set to “tss” this tells us that a “tss” key is requested.
        - `pub` string — public part of a key pair
      - KeyTSS
        - `encryptedPrv` string — The encrypted private key
        - `id` string, required
        - `isBitGo` boolean — True, if this key is owned by BitGo
        - `source` 'backup' | 'bitgo' | 'cold' | 'user', required
        - `type` 'tss' | 'independent', required — A value from a string enum denoting what kind of key this is. Defaults to “independent” indicating an on-chain key is requested. If set to “tss” this tells us that a “tss” key is requested.
        - `commonKeychain` string — The commonKeychain for the key if this is a MPC key. This value is required to be set when the type is set to “tss” and when the source is either “user” or “backup”. Setting this indicates to BitGo that the owner of the key has received all key shares they needed for generating their key. This value is the concatenation of the common public key (32-byte) with the common chaincode (32-byte) as a hex string.
        - `commonPub` string — The common public key. This value is required to be set for MPC keys when the source is either "user" or "backup". Setting this indicates to BitGo that the owner of the key has received all key shares they needed for generating their key.

## Other responses

- `400` — Bad Request

---

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