Get wallet
GET/v1/wallets/:wallet_id
Get wallet
This endpoint retrieves a wallet by its ID. It queries the database for the wallet using the provided ID. If not found, a 404 Not Found error is returned. On failure, it may also return a 500 Internal Server Error.
Request
Path Parameters
wallet_id uuidrequired
Wallet id
Responses
- 200
- 404
- 500
Wallet found
- application/json
- Schema
- Example (from schema)
Schema
apiKeyId uuidnullable
backupKey stringrequired
createdAt date-timerequired
id uuidrequired
name stringrequired
ownerId uuidrequired
seed stringrequired
walletType stringrequired
{
"apiKeyId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"backupKey": "string",
"createdAt": "2024-09-25T19:42:12.664Z",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"ownerId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"seed": "string",
"walletType": "string"
}
Wallet not found
- text/plain
- Schema
Schema
string
Internal server error
- text/plain
- Schema
Schema
string
Loading...