# Bank Statements Normal Response
This example shows the response body json payload for a normal bank statement
.
{
"requestId": "00000000-0000-4000-a000-000000000001",
"code": "pdf/success/bank-statement-normal",
"type": 2,
"data": {
"type": "BankStatementNormal",
"parser": "ABSA_ACTIVESAVE_ALL_0",
"statement": {
"bank": "ABS",
"accountNumber": "9017446437",
"dates": {
"issuedOn": "2018-09-02T00:00:00",
"from": "2018-08-01T00:00:00",
"to": "2018-08-31T00:00:00"
},
"nameAddress": [
"Mr. J Smith",
"10 Main Road",
"Cape Town",
"8001"
]
},
"transactions": [
{
"id": 1,
"date": "2017-09-12T00:00:00.000Z",
"description": ["Deposit"],
"amount": 1600.01,
"balance": 1600.01
},
{
"id": 2,
"date": "2017-09-12T00:00:00.000Z",
"description": ["#Monthly Account Fee"],
"amount": -100,
"balance": 1000.01
},
{
"id": 3,
"date": "2017-09-12T00:00:00.000Z",
"description": ["Woolworths"],
"amount": -500,
"balance": 1100.01
}
],
"valid": true
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48