XRPL Node

XRPL Node

Read ledgers and transactions, and submit signed transactions — any transaction type the ledger has.

Transaction hashes are 64-character hex. Submit relays whatever you signed: the type list below is what the ledger accepts today. Every transaction type you can submit →

Transaction types you can submit (62)

POST /v1/submit relays any of these — you sign, it submits. Pick a type for its example JSON: the transaction as you would build it before signing. The list is the api's own (GET /v1/submit/types).

Payments and accounts
DEX and AMM
NFTs
Escrows, checks and channels
Identity and domains
MPTs and vaults
Cross-chain
Example Payment JSONfrom the reference · unsigned: add Fee and Sequence, then sign
{
  "TransactionType": "Payment",
  "Account": "rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn",
  "Destination": "ra5nK24KXen9AHvsdFTKHSANinZseWnPcX",
  "DeliverMax": {
    "currency": "USD",
    "value": "1",
    "issuer": "rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn"
  },
  "Fee": "12",
  "Flags": 2147483648,
  "Sequence": 2
}
Send funds to another account, convert between currencies, or create a new account by sending it XRP.Every field, on xrpl.buildA real Payment on MainnetSend one on Testnet

Ledger

Submit

Transaction Explain