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

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>.

Path Parameters

asset
string
required
Pattern: ^\w{1,10}$

Query Parameters

format
enum<string>
Available options:
concise,
json
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.

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"