cURL
curl --request GET \ --url https://api.example.com/v1/server/wallets/{walletId}/accounts/{accountId} \ --header 'X-Access-Key: <x-access-key>' \ --header 'X-Signature: <x-signature>' \ --header 'X-Timestamp: <x-timestamp>'
{ "account": {} }
Get server account details
curl -X GET https://api.axonvault.io/v1/server/wallets/wal_abc123/accounts/acc_xyz789 \ -H "X-Access-Key: ak_live_abc123" \ -H "X-Signature: sha256=..." \ -H "X-Timestamp: 2024-01-15T10:30:00Z"
{ "account": { "accountId": "acc_xyz789", "walletId": "wal_abc123", "accountIndex": 0, "accountName": "Treasury", "createdAt": "2024-01-15T10:30:00Z", "updatedAt": "2024-01-15T10:30:00Z" } }