Get Wallet by ID
GET /wallets/{walletId}
Retrieves a Wallet by its ID.
Request headers required. See Request Headers for more information.
Authentication required. See Authentication Headers for more information.
Required Permissions
Wallets:Read
Always Required
Parameters
Path parameters
walletId
Unique identifier of the Wallet
. ex. wa-1f04s-lqc9q-xxxxxxxxxxxxxxxx
Response
The response body is the Wallet. The Wallet object has those fields:
id
- string - ID of the walletnetwork
- string - Network used for the wallet (See Supported Networks for possible values)name
- (Optional) string - Name given to the walletaddress
- (Optional) string - Wallet address on its corresponding network. If using a Pseudo Network, this field will not be set.status
- string - Status of the wallet, can be one ofActive
,Archived
.signingKey
- object - Info about the signing key corresponding to that walletscheme
- string - Supported schemes areECDSA
orEdDSA
curve
- string - Key curve. Can beed25519
orsecp256k1
publicKey
- string - Hex-encoded value of public key
dateCreated
- string - ISO 8601 date string when wallet was createdimported
- (Optional) boolean - istrue
if the wallet is an imported wallet.exported
- (Optional) boolean - istrue
if the wallet was already exported at least once.dateExported
- (Optional) string - ISO 8601 date string when wallet was first exported.
200 Response example
Last updated