Get transaction history
Retrieve transaction history with filtering and pagination
X-API-Key<token>
In: header
Query Parameters
page?integer
Page number
Default
1Range
1 <= valuelimit?integer
Items per page
Default
20Range
1 <= value <= 200currencystring
ISO currency code
Value in
"NGN" | "USD" | "EUR" | "GBP"institutionstring
Institution type
Value in
"BANK" | "WALLET" | "CARD"walletId?string
Filter by wallet ID
Format
uuidstartDate?string
Start date for filtering
Format
dateendDate?string
End date for filtering
Format
dateHeader Parameters
X-API-Keystring
API key for the application
X-App-Idstring
UUID of the application
Format
uuidResponse Body
curl -X GET "https://virtual-accounts-api.vantacrest.com/company/v1/transactions/history?page=1&limit=20¤cy=NGN&institution=BANK&walletId=497f6eca-6276-4993-bfeb-53cbbbba6f08&startDate=2019-08-24&endDate=2019-08-24" \ -H "X-API-Key: string" \ -H "X-App-Id: 497f6eca-6276-4993-bfeb-53cbbbba6f08"{
"data": {
"transactions": [
{
"id": "string",
"amount": 0,
"currency": "string",
"flow": "INFLOW",
"narration": "string",
"reference": "string",
"status": "PENDING",
"method": "TRANSFER",
"fromAccount": "string",
"toAccount": "string",
"createdAt": "2019-08-24T14:15:22Z",
"updatedAt": "2019-08-24T14:15:22Z"
}
],
"pagination": {
"currentPage": 0,
"totalPages": 0,
"totalItems": 0,
"pageSize": 0
},
"summary": {
"totalAmount": 0,
"totalTransactions": 0,
"currency": "string"
}
}
}{
"success": true,
"message": "string",
"data": {},
"timestamp": "2019-08-24T14:15:22Z"
}{
"success": true,
"message": "string",
"data": {},
"timestamp": "2019-08-24T14:15:22Z"
}
OPEN BANKING DOCS