v1

latestOpenAPI 3.1.0Proprietary2026-07-244223105.2 KB
Transactions

Get a single transaction

Retrieve the details of a single transaction

get/v3/aggregation/transactions/{id}

Path parameters

idnumber required
Example:14534314534

Response

Transaction

idnumber required

Transaction's unique identifier

clean_descriptionstring required

Transaction's description cleaned and processed by the API

provider_descriptionstring required

Transaction's raw description taken from the provider

amountnumber required

Transaction's amount A positive value indicates a credit and a negative value indicates a debit

datestring date required

Transaction date

booking_datestring date

Actual date when the transaction is posted to the account

transaction_datestring date

Date on which the banking transaction is carried out but the the balance is not affected

value_datestring date

Value date of the transaction on the account

updated_atstring date-time required

Timestamp recording when the transaction was last updated

currency_codestring required

3 letters ISO 4217 currency code

deletedboolean required

Flag to indicate that the transaction was deleted

category_idnumber

Transaction's category unique identifier

operation_type'card' | 'check' | 'transfer' | 'direct_debit' | 'deposit' | 'withdrawal' | 'deferred_debit_card' | 'open_banking' | 'unknown'

Type the transactions as standard banking operation

account_idnumber required

Transaction's account unique identifier

futureboolean required

Flag to indicate that the transaction will be debited in the future and doesn’t affect the account’s balance

Example response

{
  "id": 1000013102238,
  "clean_description": "CB Mad Cours Marjane M.m G",
  "provider_description": "PAIEMENT PAR CARTE 09/11/2024 73.6 MAD COURS 0.09402 MARJANE M.M G",
  "amount": -6.92,
  "date": "2024-11-09",
  "booking_date": "2024-11-09",
  "transaction_date": "2024-11-09",
  "value_date": "2024-11-09",
  "updated_at": "2024-11-09T16:10:10.143Z",
  "currency_code": "EUR",
  "category_id": 249,
  "operation_type": "card",
  "account_id": 2341339,
  "bridge_payment_information": {
    "payment_request_id": "773a347c-a7ae-4bda-8ab5-d768631088ee",
    "payment_link_id": "2e33f3f9-1b9f-4ba6-8a4b-ddabbc71cb11",
    "payment_transaction_id": "bf8f3e2a-6b04-412a-b2a3-be7fef470b4a"
  }
}