# List all transactions **GET /v1/transactions** ## Servers - Production: https://api.memo.bank (Production) - Sandbox: https://api.sandbox.memo.bank (Sandbox) ## Authentication methods - Jwt ## Parameters ### Query parameters - **account_id** (string(uuid)) Filter transactions by account. - **page** (integer(int32)) Index of the requested page. - **size** (integer(int32)) Number of elements per page in response. - **start_date** (string(date-time)) Filter transactions by execution date (inclusive greater than), in ISO8601 format. - **end_date** (string(date-time)) Filter transactions by execution date (exclusive lower than), in ISO8601 format. - **reference** (string(uuid)) Filter transactions by reference. - **local_iban** (string) Filter transactions by local IBAN. Allows for example to list all incoming **and** outgoing transactions that passed through a given virtual IBAN. - **batch_id** (string(uuid)) Filter transactions by transaction batch. - **custom_id** (string) Filter transactions by custom ID. - **order_by** (string) Sort transactions in ascending or descending order. ## Responses ### 200 OK #### Body: application/json (object) - **results** (array[object]) Elements of the page. - **has_prev** (boolean) Flag indicating if there is a previous page. - **has_next** (boolean) Flag indicating if there is a next page. [Powered by Bump.sh](https://bump.sh)