Skip to main content
GET
/
v1
/
server
/
addresses
/
{addressId}
Get Server Address
curl --request GET \
  --url https://api.example.com/v1/server/addresses/{addressId} \
  --header 'X-Access-Key: <x-access-key>' \
  --header 'X-Signature: <x-signature>' \
  --header 'X-Timestamp: <x-timestamp>'
{
  "address": {}
}

Get Server Address

Retrieve detailed information about a specific server address.

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

addressId
string
required
The address identifier

Response

address
object
Address details

Example

curl -X GET https://api.axonvault.io/v1/server/addresses/addr_abc123 \
  -H "X-Access-Key: ak_live_abc123" \
  -H "X-Signature: sha256=..." \
  -H "X-Timestamp: 2024-01-15T10:30:00Z"
Response:
{
  "address": {
    "addressId": "addr_abc123",
    "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f8fE00",
    "chainId": "eip155:1",
    "derivationPath": "m/44'/60'/0'/0/0",
    "accountId": "acc_xyz789",
    "walletId": "wal_abc123",
    "createdAt": "2024-01-15T10:35:00Z"
  }
}