# Get a transaction **GET /v2/transactions/{id}** ## Servers - Production: https://api.memo.bank (Production) - Sandbox: https://api.sandbox.memo.bank (Sandbox) ## Authentication methods - Jwt ## Parameters #### Path parameters - **id** (string(uuid)) ID of the transaction. ## Responses ### 200: OK #### Body Parameters: application/json (object) - **id** (string(uuid)) Unique ID of the transaction. - **reference** (string(uuid)) Reference of the money movement. In case you initiate a transfer between two of your own accounts, both transactions (`debit` and `credit`) will have the same reference, it can be safely used to correlate them. - **account_id** (string(uuid)) ID of the account this transaction belongs to. - **amount** (integer(int64)) Amount of the transaction, in cents. The amount is always positive, use `direction` to give it a sign. - **local_iban** (string) IBAN through which this transaction got in or out of the account. Can be the main IBAN of the account or a virtual IBAN. - **currency** (string) Currency of the transaction amount, in ISO 4217 format. - **direction** (string) Direction of the transaction. - **request_date** (string(date-time)) Date at which the transaction has been requested, in ISO8601 format. Usually the same as the execution date, except for scheduled transfers and transfer requests. - **execution_date** (string(date-time)) Date at which the transaction processing has started or will start, in ISO8601 format. For debits, that’s when the money is removed from the available balance of the account. - **accounting_date** (string(date-time)) Date at which the transaction has been confirmed, in ISO8601 format. For credits, that’s when the money is credited from the available balance of the account. - **counterparty_name** (string) Name of the counterparty. - **internal_note** (string) Internal note attached to this transaction, visible only in your Memo Bank workspace. - **status** (string) Current status of the transaction. - **batch_id** (string(uuid)) ID of the batch this transaction belongs to, if any. - **custom_id** (string) Custom identifier attached to the transaction. It is not transmitted nor visible in your Memo Bank workspace. It can only be retrieved or used to search for transactions via Memo Bank API. - **custom_metadata** (string) Custom metadata attached to the transaction. It is not transmitted nor visible in your Memo Bank workspace and can only be retrieved via API. - **attachment_count** (integer(int32)) Number of documents attached to this transaction. - **source** (object) Source of the transaction. We may add additional source types over time; your application should be able to handle such additions gracefully. [Powered by Bump.sh](https://bump.sh)