Skip to main content
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>'
{
  "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_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

Authorization
string
header
required

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
string

asset

o
string

Which field to use when ordering the results.

page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

status
string

status

time
enum<string>

Time Period

  • 24h - 24 hours
  • week - Week
  • month - Month
  • year - Year
Available options:
24h,
month,
week,
year
transaction_type
string

transaction_type

Response

200 - application/json
count
integer
required
Example:

123

results
object[]
required
next
string<uri> | null
Example:

"http://api.example.org/accounts/?page=4"

previous
string<uri> | null
Example:

"http://api.example.org/accounts/?page=2"