Ledger

The Ledger API provides access to transactions records (deposits, credits, debits, etc.) for the entire system or by individual usersxxx.

List All Ledger Entries

Returns a list of all ledger entries.

Responses
200

Successful response with list of ledger entries

get/ledger
Response samples
application/json
[
  • {
    }
]

Show Ledger Entries by Username

Returns all ledger entries for the given username.

Request
path Parameters
username
required
string
Responses
200

Successful response with ledger entries for the user

get/ledger/users/{username}
Response samples
application/json
[
  • {
    }
]

Show Ledger Deposits by Username

Returns only the deposit entries for the given username.

Request
path Parameters
username
required
string
Responses
200

Successful response with deposits categorized by currency

get/ledger/users/{username}/deposits
Response samples
application/json
{
  • "api_data": {
    }
}