Get Transactions
post
Get linked account transactions history for all sub-accounts.
Authorizations
Body
clientIdstringOptional
Client ID
userIdstringOptional
User ID
providerAccountIdstringOptional
Provide account ID
startDatestring ยท dateOptional
Start date from. expected date format: YYYY-MM-DD
endDatestring ยท dateOptional
End date to. expected date format: YYYY-MM-DD
consentbooleanOptional
Agree to Terms of Use agreement
Responses
200Success
application/json
post
POST /insyts/gettransactions HTTP/1.1
Host: api.akibaone.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 125
{
"clientId": "text",
"userId": "text",
"providerAccountId": "text",
"startDate": "2025-06-27",
"endDate": "2025-06-27",
"consent": true
}
200Success
{
"transaction": [
{
"CONTAINER": "text",
"id": 1,
"amount": {
"amount": 1,
"currency": "text"
},
"baseType": "text",
"categoryType": "text",
"categoryId": 1,
"category": "text",
"categorySource": "text",
"highLevelCategoryId": 1,
"createdDate": "2025-06-27T09:26:28.174Z",
"lastUpdated": "2025-06-27T09:26:28.174Z",
"description": {
"original": "text",
"simple": "text"
},
"isManual": true,
"sourceType": "text",
"date": "text",
"postDate": "text",
"status": "text",
"accountId": 1,
"runningBalance": {
"amount": 1,
"currency": "text"
},
"merchant": {
"id": "text",
"name": "text",
"source": "text"
}
}
]
}