get https://api.mercury.com/api/v1/account//statements
Retrieve statement information for a depository account in a given time period (Note: For now, treasury and credit accounts are not supported on this endpoint. You may request this functionality by reaching out to support.)
Response schema:
{
"statements": [
{
"id": string,
"accountNumber": string,
"companyLegalAddress": {
"address1": string,
"address2": string,
"city": string,
"country": iso3166Alpha2,
"name": string,
"postalCode": string,
"region": string
},
"companyLegalName": string,
"ein": string | null,
"endDate": date-time,
"endingBalance": number,
"routingNumber": string,
"startDate": date-time,
"transactions": [
{
"createdAt": date-time | null,
"id": string,
"postedAt": date-time | null
}
],
"downloadUrl": string
}
]
}
date-time
All date-time fields are expressed in ISO8601 UTC times.