List Wallet Transactions
curl --request GET \
--url https://app.digitalsurge.com.au/api/private/v2/wallet/{asset}/wallet-transactions/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.digitalsurge.com.au/api/private/v2/wallet/{asset}/wallet-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/v2/wallet/{asset}/wallet-transactions/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"count": 123,
"results": [
{
"id": 123,
"created": "2023-11-07T05:31:56Z",
"src_amount": "<string>",
"dst_amount": "<string>",
"object_id": 123,
"resulting_balance": "<string>",
"exchange_rate": "<string>",
"cost": "<string>",
"fee": "<string>",
"status": "<string>",
"transaction_type": "<string>",
"transaction_subtype": "<string>",
"src_asset": "<string>",
"dst_asset": "<string>",
"quote_cost": "<string>",
"aud_fee": "<string>",
"aud_value": "<string>",
"fee_currency": "<string>"
}
],
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2"
}Private
List Wallet Transactions
Wallet transactions for a given asset, with AUD-equivalent values.
Every deposit, withdrawal, trade, swap, fee, or adjustment that affects your balance of this asset appears here as a single entry. Each entry also includes the AUD value at the time of the transaction, and a downloadable invoice is available for trades and swaps.
GET
/
api
/
private
/
v2
/
wallet
/
{asset}
/
wallet-transactions
/
List Wallet Transactions
curl --request GET \
--url https://app.digitalsurge.com.au/api/private/v2/wallet/{asset}/wallet-transactions/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.digitalsurge.com.au/api/private/v2/wallet/{asset}/wallet-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/v2/wallet/{asset}/wallet-transactions/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"count": 123,
"results": [
{
"id": 123,
"created": "2023-11-07T05:31:56Z",
"src_amount": "<string>",
"dst_amount": "<string>",
"object_id": 123,
"resulting_balance": "<string>",
"exchange_rate": "<string>",
"cost": "<string>",
"fee": "<string>",
"status": "<string>",
"transaction_type": "<string>",
"transaction_subtype": "<string>",
"src_asset": "<string>",
"dst_asset": "<string>",
"quote_cost": "<string>",
"aud_fee": "<string>",
"aud_value": "<string>",
"fee_currency": "<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>.
Path Parameters
Pattern:
^\w{1,10}$Query Parameters
Available options:
concise, json Which field to use when ordering the results.
A page number within the paginated result set.
Number of results to return per page.