cURL
curl --request GET \ --url https://api.example.com/v1/server/addresses/lookup \ --header 'X-Access-Key: <x-access-key>' \ --header 'X-Signature: <x-signature>' \ --header 'X-Timestamp: <x-timestamp>'
{ "address": {} }
Look up address by blockchain address string
curl -X GET "https://api.axonvault.io/v1/server/addresses/lookup?address=0x742d35Cc6634C0532925a3b844Bc9e7595f8fE00&chainId=eip155:1" \ -H "X-Access-Key: ak_live_abc123" \ -H "X-Signature: sha256=..." \ -H "X-Timestamp: 2024-01-15T10:30:00Z"
{ "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" } }
{ "errorType": "ADDRESS_NOT_FOUND", "errorMessage": "Address not found in this project" }