Skip to main content
GET
/
v1
/
transaction-postings
Search transaction postings
curl --request GET \
  --url https://api.example.com/v1/transaction-postings
{
  "data": [
    {
      "id": "019bdb2a-960f-789d-8955-21720e6cdef0",
      "accountId": "world",
      "amount": 1000,
      "currency": "EUR",
      "details": "Payment for invoice #12345",
      "referenceId": "REF-12345",
      "referenceSource": "PAYMENT",
      "direction": "SOURCE",
      "createdAt": "2024-01-15T10:30:00.542Z"
    }
  ],
  "page": 0,
  "size": 100,
  "totalPages": 5
}

Documentation Index

Fetch the complete documentation index at: https://docs.finventi.com/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

accountId
string | null

Account identifier to filter by

Example:

"world"

amountFrom
number | null

Minimum amount in minor units (cents)

Required range: x > 0Must be a multiple of 1
Example:

1000

amountTo
number | null

Maximum amount in minor units (cents)

Required range: x > 0Must be a multiple of 1
Example:

100000

creationDateFrom
string<date-time> | null

Filter postings created after this date (inclusive)

Example:

"2024-01-01T00:00:00.000Z"

creationDateTo
string<date-time> | null

Filter postings created before this date (inclusive)

Example:

"2024-12-31T23:59:59.000Z"

currency
string | null

Currency code filter (ISO 4217)

Example:

"EUR"

page
integer<int32>

Page number (0-based)

Required range: x >= 0
Example:

0

referenceId
string | null

Reference identifier to filter by

Example:

"REF-12345"

referenceSource
object

Reference source to filter by

Example:

"PAYMENT"

size
integer<int32>

Number of items per page (max 100)

Required range: 1 <= x <= 100
Example:

20

sortBy
string
default:createdAt

Field name to sort by

Example:

"createdAt"

sortDirection
object

Sort direction

Response

Paginated list of transaction postings

Paginated response wrapper

data
object[]

List of items for the current page

page
integer<int32>

Current page number (0-based)

Example:

0

size
integer<int32>

Number of items per page

Example:

100

totalPages
integer<int32>

Total number of pages

Example:

5

Last modified on May 20, 2026