Ir al contenido
GET /v1/transactions

Recent account transactions

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/xrpl-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/xrpl-api/v1/transactions" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/xrpl-api/v1/transactions", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/xrpl-api/v1/transactions");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/xrpl-api/v1/transactions",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "count": 10,
        "source": "XRP Ledger",
        "address": "rHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh",
        "transactions": [
            {
                "date": "2026-06-09T07:32:30.000Z",
                "hash": "C04DF039D3C12870EB2663A79A6DA331316379CB1E4606455251A5F905984663",
                "type": "Payment",
                "amount": {
                    "value": 1.0e-6,
                    "currency": "XRP"
                },
                "result": "tesSUCCESS",
                "account": "rUDxJ3UgwoQpqg4JmYKWaQ86pMqbcyRoqn",
                "fee_xrp": 1.0e-5,
                "validated": true,
                "destination": "rHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh",
                "ledger_index": 104801101
            },
            {
                "date": "2026-06-02T03:40:51.000Z",
                "hash": "0337B1568468AA487E93F3A71C9D88FA2270E2A90BB816AAB9AB9DE4CFD448D1",
                "type": "Payment",
                "amount": {
                    "value": 1.0e-6,
                    "currency": "XRP"
                },
                "result": "tesSUCCESS",
                "account": "rhkPTtL7Rs3L4KMWubW4i1FPDm3yDy6E5V",
                "fee_xrp": 1.0e-5,
                "validated": true,
                "destination": "rHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh",
                "ledger_index": 104641078
            },
            {
                "date": "2026-05-21T12:23:41.000Z",
                "hash": "D7241E7A3EC25C632A0438264961535A9A1D4D951CA41CCEF3EBBBA16EC7ECF6",
                "type": "Payment",
                "amount": {
                    "value": 1.0e-6,
                    "currency": "XRP"
                },
                "result": "tesSUCCESS",
                "account": "rULevsm2SjGBUWNkiVBQwQsSpxrYnLcjB8",
                "fee_xrp": 1.0e-5,
                "validated": true,
                "destination": "rHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh",
                "ledger_index": 104380769
            },
            {
                "date": "2026-05-21T12:19:01.000Z",
                "hash": "A88F0271AC6DA4BBE77F2084430D0CA0A9C220D0A285A011B65091CE0CB206E6",
                "type": "Payment",
                "amount": {
                    "value": 1.0e-6,
                    "currency": "XRP"
                },
                "result": "tesSUCCESS",
                "account": "rULevsm2SjGBUWNkiVBQwQsSpxrYnLcjB8",
                "fee_xrp": 1.0e-5,
                "validated": true,
                "destination": "rHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh",
                "ledger_index": 104380697
            },
            {
                "date": "2026-05-21T12:17:42.000Z",
                "hash": "3CE3B3749C23DBB191759C5566BF2B50ADBD0AEC1B942F1BE76756CBF4270421",
                "type": "Payment",
                "amount": {
                    "value": 1.0e-6,
                    "currency": "XRP"
                },
                "result": "tesSUCCESS",
                "account": "r
…