Skip to main content
GET
/
v1
/
server
/
wallets
/
{walletId}
Get Server Wallet
curl --request GET \
  --url https://api.example.com/v1/server/wallets/{walletId}
{
  "wallet": {
    "walletId": "<string>",
    "tenantId": "<string>",
    "projectId": "<string>",
    "keyId": "<string>",
    "walletName": "<string>",
    "createAt": "<string>",
    "updateAt": "<string>"
  }
}

Get Server Wallet

Retrieve detailed information about a specific server wallet.

Request

walletId
string
required
Wallet identifier

Response

wallet
object

Example

curl -X GET https://api.axonvault.io/v1/server/wallets/wlt_srv_abc123 \
  -H "X-Access-Key: ak_live_abc123" \
  -H "X-Signature: 5d41402abc4b2a76b9719d911017c592" \
  -H "X-Timestamp: 2024-01-15T10:30:00Z"

Response Example

{
  "wallet": {
    "walletId": "wlt_srv_abc123",
    "tenantId": "ten_abc123",
    "projectId": "proj_abc123",
    "keyId": "key_xyz789",
    "walletName": "Treasury Wallet",
    "createAt": "2024-01-15T10:30:00Z",
    "updateAt": "2024-01-15T10:30:00Z"
  }
}

Errors

Error TypeStatusDescription
unauthorized401Invalid credentials
not_found404Wallet not found
forbidden403No access to this wallet