โš™๏ธ
Akiba API Docs
  • ๐ŸšฆGetting Started
    • ๐Ÿ‘‹Welcome!
    • ๐Ÿ”Authentication
    • ๐Ÿค“Make your first API call
  • ๐Ÿš€PRODUCTS
    • ๐Ÿ—๏ธProduct Guideline
      • Platform integration
        • Origination widget
      • Developer integration
        • Verification
        • Risk Analysis
    • ๐ŸŽ“Use cases
  • ๐Ÿ’กAPI Documentation
    • ๐Ÿ‘ฉโ€๐Ÿ’ปAPI reference
      • Compliance Verification
        • Consumer Experian Report
        • AML & PEP
        • Search Phone Number
        • Transunion Verification
        • Transunion Credit Report
        • Company Credit Report
        • Companyreporttaskid
        • Search Companies
        • Business Details
        • Consumer Trace
        • Search Director
        • Bank Verification
        • Express Credit Score
        • ID Photo Verification
        • Real-Time ID Verification
        • ID Verification
      • Financial Risk Analysis
        • Get Sub-Account Transactions
        • Delete Account
        • Get Linked Account
        • Get Linked Accounts
        • Account Details
        • Get Transactions
        • Expenses
        • Revenue
        • Cashflow
        • Insights
        • Score
        • Scores
        • Get Pre-signed URL
        • Update User Details
        • Get User Account By ID
        • Create User
      • Enterprise (CIPC)
        • Office Addresses
        • E-filing History
        • Director Verification
        • Company Directors
        • Director Profile
        • Basic Enterprise information
        • Company Profile
      • Authorization
        • Whoami
        • Revoke
      • Sandbox
        • V1
          • Get Webhook Details
          • Update Webhook Details
          • Create Webhook Account
          • Sub-Account Transactions
          • Get All Linked Account Ids
          • Get Account Ids
          • Delink Account
          • Account Details
          • Link Account
          • Get Transactions
          • Get Expenses
          • Get Revenues
          • Get Cashflow
          • Financial Insights
          • Financial Score
          • Financial Scores
          • Get Pre-signed URL
          • Update User Details
          • Get User Details
          • Create User Account
    • ๐ŸคตVerification APIs
      • Comprehensive KYC
      • KYB
      • Bank Statement OCR
      • Selfie ID Verification
      • ๐Ÿ‘šAnti-Money Laundering (AML)
    • ๐ŸŽฏRisk Analysis
      • ๐Ÿ‘“Insights
        • Insyts user
        • Open Banking
        • Alternative Scores
        • Affordability Assessment
        • Default prediction
        • Spend analysis
      • โ˜ข๏ธRisk scoring
    • ๐ŸฆBank Accounts
      • ๐ŸงฏActionable Insights
      • โฐLending recommendation
  • ๐Ÿ’ฒPricing
    • ๐Ÿช™Credit Pricing
    • ๐Ÿƒโ€โ™€๏ธPre-paid API Credits
    • ๐Ÿ›‚Subscription
  • Specification
  • About
  • Specification
Powered by GitBook
On this page
  1. API Documentation
  2. API reference
  3. Financial Risk Analysis

Get Transactions

PreviousAccount DetailsNextExpenses
๐Ÿ’ก
๐Ÿ‘ฉโ€๐Ÿ’ป
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-05-29",
  "endDate": "2025-05-29",
  "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-05-29T09:46:27.552Z",
      "lastUpdated": "2025-05-29T09:46:27.552Z",
      "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"
      }
    }
  ]
}