Skip to main content
GET
/
transactions
/
{id}
cURL
curl --request GET \
  --url https://api.example.com/transactions/{id}
{
  "transactionId": "019bdb2a-960f-789d-8955-21720e6cdeed",
  "idempotencyKey": "019bdb2a-960f-789d-8955-21720e6cdef0",
  "referenceId": "PAY-123456",
  "referenceSource": "PAYMENT",
  "postings": [
    {
      "id": "019bdb2a-960f-789d-8955-21720e6cdeef",
      "source": "CUSTOMER:019bdb2a-960f-789d-8955-21720e6cdeee:019bdb2a-960f-789d-8955-21720e6cdeed:CURRENT",
      "destination": "INTERNAL:CLEARING:OUTBOUND",
      "amount": 10000,
      "currency": "EUR/2",
      "details": "Payment for invoice #67"
    }
  ],
  "createdAt": "2026-01-22T13:47:21Z"
}

Path Parameters

id
string<uuid>
required

Response

200 - application/json

OK

Transaction details

transactionId
string<uuid>
required

Transaction ID

Example:

"019bdb2a-960f-789d-8955-21720e6cdeed"

idempotencyKey
string
required

Idempotency key

Example:

"019bdb2a-960f-789d-8955-21720e6cdef0"

referenceId
string
required

Reference ID

Example:

"PAY-123456"

referenceSource
string
required

Reference source

Example:

"PAYMENT"

postings
object[]
required

List of postings

createdAt
string<date-time>
required

Transaction creation timestamp

Example:

"2026-01-22T13:47:21Z"