Skip to main content

Get user keyshares

GET 

/v1/keyshares

Get user keyshares

This endpoint retrieves encrypted key shares associated with a user's API keys, accounts, and wallets. It returns a list of Keyshare objects, each containing the encrypted key share, optional initialization vector (IV), and identifiers for the wallet, API key, and account. This endpoint supports GET requests and responds with HTTP status codes 200 for successful retrieval, 404 if no wallets are found for the user, and 500 for internal server errors.

Responses

User keyshares found

Schema
  • Array [
  • account_id uuidnullable
    dkg_id uuidnullable
    encrypted_key_share binaryrequired
    encryption_iv binarynullable
    pending_acceptance booleannullable
    server_auth_tag binarynullable
    user_id uuidrequired
    wallet_id uuidnullable
  • ]
Loading...