GET
/
transactions
curl --request GET \
  --url https://api.antei.com/transactions \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "transaction_type": "inflow",
    "amount": 123,
    "currency": "<string>",
    "timestamp": "2023-11-07T05:31:56Z",
    "description": "<string>"
  }
]

Returns a paginated list of transactions. This endpoint is useful for analytics, dashboards, and reconciliation processes.

Query Parameters:

  • type – Filter by transaction type: inflow or outflow
  • start_date / end_date – Filter by transaction date range (ISO 8601 format)
  • entity_id – Filter transactions belonging to a specific entity
  • limit – Max number of records to return (default: 50)
  • offset – Pagination offset (default: 0)

Response:

Returns an array of Transaction objects, each including line items, tax information, source integration, and associated metadata.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

transaction_type
enum<string>

Filter by transaction type: inflow or outflow

Available options:
inflow,
outflow
limit
integer

Maximum number of transactions to return

Response

200
application/json

List of transactions

The response is of type object[].