Skip to main content
POST
/
gateway
/
wallets
/
show-private-key
Show Private Key
curl --request POST \
  --url http://localhost:8000/gateway/wallets/show-private-key \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "chain": "<string>",
  "address": "<string>",
  "passphrase": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json

Request to show private key for a wallet

chain
string
required

Blockchain chain (e.g., 'solana', 'ethereum')

address
string
required

Wallet address

passphrase
string
required

Gateway passphrase for decryption

Response

Successful Response

The response is of type Response Show Private Key Gateway Wallets Show Private Key Post · object.