Skip to main content
GET
/
statement
Bank Statement API
curl --request GET \
  --url https://api.bank.com/statement \
  --header 'Authorization: <authorization>' \
  --header 'x-api-key: <x-api-key>'
"{\n    \"sheets\": [\n        {\n            \"name\": \"Bank Account Statement\",\n            \"blocks\": [\n                {\n                    \"name\": \"Bank Account Statement\",\n                    \"@entity\": \"table\",\n                    \"header\": [\n                        \"transaction_id\",\n                        \"transaction_type\",\n                        \"transaction_date\",\n                        \"amount\",\n                        \"descripition\",\n                        \"closing_balance\"\n                    ],\n                    \"rows\": [\n                        [\n                            \"0000336985068700\",\n                            \"withdrawal\",\n                            1674468184,\n                            5000.0,\n                            \"UPI-Bill Payment- torrent power- hss221\",\n                            200000.0\n                        ],\n                        [\n                            \"0000336985068700\",\n                            \"deposit\",\n                            1674468184,\n                            10000.0,\n                            \"UPI-Aman Mathur-athq366\",\n                            210000.0\n                        ]\n                    ]\n                }\n            ]\n        }\n    ]\n}"

Headers

x-api-key
string
required

API key to uniquely identify the API user

x-api-version
string

API version

Authorization
string
required

Authentication token to authorize the request

Query Parameters

from
string
required

The start date for fetching the information

to
string
required

The end date for fetching the information

Response

200

sheets
object[]