curl --request GET \
--url https://app.digitalsurge.com.au/api/private/v2/wallet/address-book/{id}/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.digitalsurge.com.au/api/private/v2/wallet/address-book/{id}/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.digitalsurge.com.au/api/private/v2/wallet/address-book/{id}/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": 123,
"asset": "<string>",
"asset_name": "<string>",
"network": "<string>",
"address": "<string>",
"memo": "<string>",
"label": "<string>",
"status": "<string>",
"enabled": true,
"confirmed": true,
"confirmed_at": "2023-11-07T05:31:56Z",
"created": "2023-11-07T05:31:56Z",
"updated": "2023-11-07T05:31:56Z",
"last_used": "2023-11-07T05:31:56Z",
"times_used": 123,
"travel_rule": {}
}Get Address Book Entry
Saved withdrawal destinations for any asset.
Add an address once (with a memo tag where required), confirm it via the emailed link, and you can reuse it for future withdrawals without re-entering the address. Entries support optional travel rule declarations for regulated transfers. Deleting an entry disables it for future withdrawals while preserving the historical record.
curl --request GET \
--url https://app.digitalsurge.com.au/api/private/v2/wallet/address-book/{id}/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.digitalsurge.com.au/api/private/v2/wallet/address-book/{id}/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.digitalsurge.com.au/api/private/v2/wallet/address-book/{id}/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": 123,
"asset": "<string>",
"asset_name": "<string>",
"network": "<string>",
"address": "<string>",
"memo": "<string>",
"label": "<string>",
"status": "<string>",
"enabled": true,
"confirmed": true,
"confirmed_at": "2023-11-07T05:31:56Z",
"created": "2023-11-07T05:31:56Z",
"updated": "2023-11-07T05:31:56Z",
"last_used": "2023-11-07T05:31:56Z",
"times_used": 123,
"travel_rule": {}
}Authorizations
Personal API key, created in the Digital Surge app under Account Settings → API Keys. Send it with every request as Authorization: Bearer <your-api-key>.
Path Parameters
A unique integer value identifying this Withdrawal Address Book Entry.
Response
Read-only serializer for listing address book entries. Includes asset code instead of full asset object. Includes a computed 'status' field with values: verified, unverified, unavailable. Includes nested travel_rule data when available.
Tag/Memo for assets that require it (XRP, XLM, etc)
User-friendly label (e.g., 'My Ledger', 'Cold Storage')
Compute status based on unavailable and confirmed fields.
- unavailable: unavailable=True (admin-disabled)
- verified: confirmed=True, unavailable=False
- unverified: confirmed=False, unavailable=False
Note: enabled=False addresses are filtered out in the view and won't appear here.
False = soft deleted
Email confirmation status
Last time used for a withdrawal
Return current travel rule data for this address book entry, or null.
Uses prefetched _prefetched_attestations (set via Prefetch in the viewset queryset). Falls back to a query if the prefetch is missing (e.g. single-object retrieval).
Show child attributes
Show child attributes