v1
latestOpenAPI 3.1.02026-07-228956435.8 KBList movements
Lists the movements of one of your accounts for the mode (live or test) of the API key used. Filter by direction and resource_id, or by date range with since and until. The list is paginated. Use the starting_after, ending_before, and limit query parameters to move through the list. The Link response header carries the URLs to navigate the paginated list.
Path parameters
Unique identifier of the account.
Query parameters
Direction of the movements to return. One of inbound (money entered the account) or outbound (money left the account).
Lower bound for the transaction date. Returns movements with a transaction_date on or after this ISO 8601 datetime in UTC.
Upper bound for the transaction date. Returns movements with a transaction_date on or before this ISO 8601 datetime in UTC.
Identifier of the resource that originated the movement. Returns movements whose resource_id matches, such as a specific transfer.
Cursor that fetches the next page of movements. Use the ID of the last movement from the current page.
Cursor that fetches the previous page of movements. Use the ID of the first movement from the current page.
Maximum number of movements to return per page. Ranges from 1 to 300. Defaults to 30.
Response
List of movements for the account.
Example response
[
{
"id": "mov_2daFu0zqqDtZGJaSi2TGI2Mm1nN",
"account_id": "acc_2rN1bQ8xHvK3mWpYzLd7TfGcRsE",
"amount": 50000,
"balance": 1050000,
"currency": "MXN",
"direction": "inbound",
"mode": "test",
"resource_id": "tr_2sP9cR4yJwM6nXqZaNe8UgHdSt0",
"transaction_date": "2026-03-01T12:00:00.000Z",
"type": "transfer"
}
]