Get Wallet
Retrieves the information for a specific wallet by its ID.
- HTTP request
- GET /wallets/{walletId}
- Authorization requirements
-
Header Type Required Description Authorizationstring Yes Bearer token used to authenticate the request. See Authentication flows for instructions on generating this token. - Path parameter
-
Parameter Type Required Description walletIdstring Yes The ID of the wallet to retrieve. Required length: 1 to 64 characters. - Request body
-
curl --request GET \ --url https://api.digitalassets.ibm.com/wallets/{walletId} \ --header 'Authorization: Bearer <token>' - Response
- 200: Success
Returns the wallet entity associated with the specified ID.
Example response:
{ "id": "wa-1f04s-lqc9q-xxxxxxxxxxxxxxxx", "network": "Ethereum", "address": "0x00e3495cf6af59008f22ffaf32d4c92ac33dac47", "name": "trading hot wallet", "signingKey": { "id": "key-6ece3-9l565-xxxxxxxxxxxxxxxx", "scheme": "ECDSA", "curve": "secp256k1", "publicKey": "e2375c8c9e87bfcd0be8f29d76c818cabacd51584f72cb2222d49a13b036d84d3d" }, "status": "Active", "dateCreated": "2023-04-14T20:41:28.715Z", "custodial": true, "tags": [] }