Skip to main content
GET
/
v1
/
server
/
wallets
/
{walletId}
/
accounts
/
{accountId}
Get Server Account
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

Retrieve detailed information about a specific server account.

Authentication

X-Access-Key
string
required
API access key
X-Signature
string
required
HMAC-SHA256 signature
X-Timestamp
string
required
ISO 8601 timestamp

Path Parameters

walletId
string
required
The server wallet identifier
accountId
string
required
The account identifier

Response

account
object
Account details

Example

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"
Response:
{
  "account": {
    "accountId": "acc_xyz789",
    "walletId": "wal_abc123",
    "accountIndex": 0,
    "accountName": "Treasury",
    "createdAt": "2024-01-15T10:30:00Z",
    "updatedAt": "2024-01-15T10:30:00Z"
  }
}