Docs [https://github.com/ripple/rippled-historical-database#get-account-transaction-history](url) `Excepted result:` https://data.ripple.com/v2/accounts/rGig91TmYtssYz8umHGtF6A22gBtwgLxHn/transactions?type=Payment&result=tesSUCCESS&limit=1&descending=true to return transactions in `descending` order `Actual result:` Server response code: `500 Internal Server Error` ```json { "result": "error", "message": "unable to retrieve transactions" } ``` Workarounds: 1. Remove `result=tesSUCCESS` from query and sort manually" https://data.ripple.com/v2/accounts/rGig91TmYtssYz8umHGtF6A22gBtwgLxHn/transactions?type=Payment&limit=1&descending=true 2. Remove sort criteria `descending=true` and sort manually: https://data.ripple.com/v2/accounts/rGig91TmYtssYz8umHGtF6A22gBtwgLxHn/transactions?type=Payment&result=tesSUCCESS&limit=1 @shekenahglory Can you take a look ?.