Skip to main content

Transactions

GET 

https://sandbox.bankhub.dev/transactions

Retrieve transaction data

Request

Responses

Success

Authorization: x-client-id

name: x-client-idtype: apiKeydescription: Your bankHub API client-id.in: header
name: x-secret-keytype: apiKeydescription: Your bankHub API secret-key.in: header
name: Authorizationtype: apiKeydescription: The access token associated with the Grant data is being requested for.in: header
import http.client

conn = http.client.HTTPSConnection("sandbox.bankhub.dev")
payload = ''
headers = {
'Accept': 'application/json',
'x-client-id': '<x-client-id>',
'x-secret-key': '<x-client-id>',
'Authorization': '<x-client-id>'
}
conn.request("GET", "/transactions", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
Request Collapse all
Base URL
https://sandbox.bankhub.dev
Auth
Parameters
— query
— query
ResponseClear

Click the Send API Request button above and see the response here!