v1

latestOpenAPI 3.1.02026-07-228956435.8 KB
Movements

Get a movement

Retrieves the details of a movement that belongs to one of your accounts, by its ID.

get/accounts/{account_id}/movements/{id}

Path parameters

account_idstring required

Unique identifier of the account.

idstring required

Unique identifier of the movement to retrieve.

Response

The requested movement.

idstring required

Unique identifier of the movement.

object'movement' required

Type of the object. Always movement.

account_idstring required

Identifier of the account the movement belongs to.

amountinteger required

Amount of the movement, in the smallest unit of the currency. Use the direction field to tell whether money entered or left the account.

balanceinteger required

Account balance right after the movement, in the smallest unit of the currency.

currency'CLP' | 'MXN' required

Currency of the movement. One of CLP, MXN.

direction'inbound' | 'outbound' required

Whether money entered (inbound) or left (outbound) the account.

mode'live' | 'test' required

Whether the movement is live or test data.

resource_idstring nullable required

Identifier of the resource that originated the movement, for example, a transfer. null when no resource originated the movement.

return_pair_idstring nullable required

Identifier of the other movement in a reversal pair, set on both the reversed movement and the movement that reverses it (for example, a transfer_return). null when the movement is not part of a reversal pair.

transaction_datestring date-time required

Date and time Fintoc recorded the movement in the account, as an ISO 8601 datetime in UTC.

type'transfer' | 'transfer_return' | 'fee' | 'check' | 'compensation' | 'other' required

Kind of movement. One of transfer, transfer_return (the reversal of a previous transfer), fee, check, compensation, or other.

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"
}