🔁

Transaction → Request

Paste a transaction JSON, get the matching API request + curl command.

Transaction (input)
Request (output)
{
  "method": "POST",
  "url": "/api/v1/transfers",
  "headers": {
    "Content-Type": "application/json",
    "X-Request-Id": "TX-10293",
    "X-Idempotency-Key": "TX-10293"
  },
  "body": {
    "reference": "TX-10293",
    "operation": "transfer",
    "amount": 250000,
    "currency": "VND",
    "source": "0123456789",
    "destination": "0987654321",
    "description": "Thanh toan don hang",
    "channel": "mobile",
    "timestamp": "2026-06-24T08:30:00Z"
  }
}
cURL
curl -X POST '/api/v1/transfers' \
  -H 'Content-Type: application/json' \
  -H 'X-Request-Id: TX-10293' \
  -H 'X-Idempotency-Key: TX-10293' \
  -d '{"reference":"TX-10293","operation":"transfer","amount":250000,"currency":"VND","source":"0123456789","destination":"0987654321","description":"Thanh toan don hang","channel":"mobile","timestamp":"2026-06-24T08:30:00Z"}'