Saltar al contenido principal
GET
List account statements
v2 · Base URL https://api.fintoc.com/v2

Autorizaciones

Authorization
string
header
requerido

Parámetros de ruta

account_id
string
requerido

Unique identifier of the account whose statements you want to list.

Parámetros de consulta

since
string

Lower bound for the statement period. Returns statements whose end_date is on or after this ISO 8601 date.

Ejemplo:

"2026-01-01"

until
string

Upper bound for the statement period. Returns statements whose start_date is on or before this ISO 8601 date.

Ejemplo:

"2026-03-31"

starting_after
string

Cursor that fetches the next page of account statements. Use the ID of the last account statement from the current page.

Ejemplo:

"acst_2rNxBkOrlHoOYsZTyQYhA0o8Ek0"

ending_before
string

Cursor that fetches the previous page of account statements. Use the ID of the first account statement from the current page.

Ejemplo:

"acst_2rNxBkOrlHoOYsZTyQYhA0o8Ek0"

limit
integer

Maximum number of account statements to return per page. Ranges from 1 to 300. Defaults to 30.

Ejemplo:

50

Respuesta

List of account statements for the account.

id
string
requerido

Unique identifier of the account statement.

Ejemplo:

"acst_2daFu0zqqDtZGJaSi2TGI2Mm1nN"

object
any
requerido

Type of the object. Always account_statement.

created_at
string<date-time>
requerido

Point in time when Fintoc generated the statement, as an ISO 8601 datetime in UTC.

Ejemplo:

"2026-03-01T12:00:00.000Z"

download_url
string | null
requerido

URL to download the statement PDF. null when the file is not yet available.

Ejemplo:

"https://fintoc.com/account_statements/astmt.pdf"

end_date
string<date>
requerido

Last day covered by the statement, as an ISO 8601 date.

Ejemplo:

"2026-02-28"

final_balance_cents
integer
requerido

Account balance at the end of the period, in the smallest currency unit.

Ejemplo:

1500000

initial_balance_cents
integer
requerido

Account balance at the start of the period, in the smallest currency unit.

Ejemplo:

1000000

start_date
string<date>
requerido

First day covered by the statement, as an ISO 8601 date.

Ejemplo:

"2026-02-01"

total_credited_cents
integer
requerido

Total credited during the period, in the smallest currency unit.

Ejemplo:

1000000

total_debited_cents
integer
requerido

Total debited during the period, in the smallest currency unit.

Ejemplo:

500000