The Ledger API provides access to transactions records (deposits, credits, debits, etc.) for the entire system or by individual usersxxx.
Returns a list of all ledger entries.
Successful response with list of ledger entries
[- {
- "id": "string",
- "external_id": "string",
- "type": "string",
- "amount": 0,
- "currency": "string",
- "currency_id": "string",
- "ticker": "string",
- "order_id": "string",
- "status": "string",
- "txid": "string",
- "wallet_address": "string",
- "wallet_type": "string",
- "comment": "string",
- "timestamp": "2019-08-24T14:15:22Z",
- "username": "string"
}
]
Returns all ledger entries for the given username.
Successful response with ledger entries for the user
[- {
- "id": "string",
- "type": "string",
- "amount": 0,
- "currency": "string",
- "currency_id": "string",
- "ticker": "string",
- "status": "string",
- "comment": "string",
- "timestamp": "2019-08-24T14:15:22Z",
- "username": "string"
}
]
Returns only the deposit entries for the given username.
Successful response with deposits categorized by currency
{- "api_data": {
- "property1": [
- {
- "id": "string",
- "external_id": "string",
- "type": "string",
- "amount": 0,
- "currency": "string",
- "currency_id": "string",
- "ticker": "string",
- "status": "string",
- "txid": "string",
- "wallet_address": "string",
- "wallet_type": "string",
- "comment": "string",
- "timestamp": "2019-08-24T14:15:22Z",
- "username": "string"
}
], - "property2": [
- {
- "id": "string",
- "external_id": "string",
- "type": "string",
- "amount": 0,
- "currency": "string",
- "currency_id": "string",
- "ticker": "string",
- "status": "string",
- "txid": "string",
- "wallet_address": "string",
- "wallet_type": "string",
- "comment": "string",
- "timestamp": "2019-08-24T14:15:22Z",
- "username": "string"
}
]
}
}