List Address Book
curl --request GET \
--url https://app.digitalsurge.com.au/api/private/v2/wallet/address-book/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.digitalsurge.com.au/api/private/v2/wallet/address-book/"
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/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"count": 123,
"results": [
{
"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": {}
}
],
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2"
}Private
List Address Book
List address book entries with optional filtering.
Query params:
- asset: Filter by asset code (e.g., ?asset=BTC)
- status: Filter by status - verified, unverified, unavailable (e.g., ?status=verified)
GET
/
api
/
private
/
v2
/
wallet
/
address-book
/
List Address Book
curl --request GET \
--url https://app.digitalsurge.com.au/api/private/v2/wallet/address-book/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.digitalsurge.com.au/api/private/v2/wallet/address-book/"
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/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"count": 123,
"results": [
{
"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": {}
}
],
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2"
}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>.
Query Parameters
A page number within the paginated result set.
Number of results to return per page.