List All Transactions
curl --request GET \
--url https://app.digitalsurge.com.au/api/private/wallet/all-transactions/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.digitalsurge.com.au/api/private/wallet/all-transactions/"
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/wallet/all-transactions/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"count": 123,
"results": [
{
"summary_id": 123,
"id": 123,
"object_id": 123,
"created": "2023-11-07T05:31:56Z",
"src_asset": "<string>",
"dst_asset": "<string>",
"exchange_rate": "<string>",
"fee_currency": "<string>",
"transaction_type": "buy",
"transaction_subtype": "<string>",
"src_amount": "<string>",
"dst_amount": "<string>",
"quote_cost": "<string>",
"cost": "<string>",
"fee": "<string>",
"aud_fee": "<string>",
"aud_value": "<string>",
"status": "<string>"
}
],
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2"
}Private
List All Transactions
Unified transaction history across every asset you hold.
Every deposit, withdrawal, trade, swap, reward, and adjustment appears
as a single entry, most recent first. Filter by asset, status,
transaction_type (accepts a comma-separated list), or a
time period of 24h, week, month, or year.
GET
/
api
/
private
/
wallet
/
all-transactions
/
List All Transactions
curl --request GET \
--url https://app.digitalsurge.com.au/api/private/wallet/all-transactions/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.digitalsurge.com.au/api/private/wallet/all-transactions/"
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/wallet/all-transactions/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"count": 123,
"results": [
{
"summary_id": 123,
"id": 123,
"object_id": 123,
"created": "2023-11-07T05:31:56Z",
"src_asset": "<string>",
"dst_asset": "<string>",
"exchange_rate": "<string>",
"fee_currency": "<string>",
"transaction_type": "buy",
"transaction_subtype": "<string>",
"src_amount": "<string>",
"dst_amount": "<string>",
"quote_cost": "<string>",
"cost": "<string>",
"fee": "<string>",
"aud_fee": "<string>",
"aud_value": "<string>",
"status": "<string>"
}
],
"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
asset
Which field to use when ordering the results.
A page number within the paginated result set.
Number of results to return per page.
status
Time Period
24h- 24 hoursweek- Weekmonth- Monthyear- Year
Available options:
24h, month, week, year transaction_type