Home

account_tx

POST
https://xrp.nownodes.io/

Authorizations

ApiKeyAuthApiKeyAuth

api-key string

NOWNodes API key passed in the api-key header.

Retrieves the transaction history for a specific account. Returns an array of transactions that affected the specified account in some way. This includes payments, trust lines, offers, and other transaction types.

Body

application/json

Retrieves the transaction history for a specific account. Returns an array of transactions that affected the specified account in some way. This includes payments, trust lines, offers, and other transaction types.

JSON-RPC request payload.

methodstringaccount_txrequired

The JSON-RPC method name

paramsArray<object>required

Ordered JSON-RPC method parameters.

Show child attributes
accountstringrequired

The unique identifier of the account, typically an XRP Ledger address in base58 format. This is the account whose transaction history is being queried.

api_versioninteger

(Optional) The API version to use. Version 2 provides enhanced response formatting.

binaryboolean

If true, return transactions as hex strings instead of JSON. When false (recommended), transactions are returned in parsed JSON format.

forwardboolean

If true, return results in ascending ledger order (oldest first). If false, return results in descending ledger order (newest first).

ledger_hashstring

(Optional) A 20-byte hex string identifying a specific ledger version to use for the request.

ledger_indexstringvalidatedclosedcurrent

The ledger index of the ledger to use for the request.

ledger_index_mininteger

The minimum ledger index to search from. Use -1 to start from the earliest available ledger.

ledger_index_maxinteger

The maximum ledger index to search to. Use -1 to search up to the most recent available ledger.

limitinteger

(Optional) Limit the number of transactions to retrieve. The server is not required to honor this value.

markerobject

(Optional) Value from a previous paginated response. Resume retrieving data where that response left off.

Response

200OK

HTTP 200 response for account_tx. The body contains either a successful result or a method-level JSON-RPC error.

400Bad Request

Bad Request. The request body is malformed or contains invalid JSON-RPC parameters.

401Unauthorized

Unauthorized: API key is present but rejected by the NOWNodes gateway.

405Method Not Allowed

Method Not Allowed. Returned by the NOWNodes gateway for malformed or unsupported gateway-level requests.

422Unprocessable Entity

Missing API key. The NOWNodes gateway returns plain text for this error.

500Internal Server Error

Internal Server Error. The gateway or node failed while processing the request.