API Documentation
Applicant Details
Financial Transactions

Financial Transactions

Returns an array of all transactions across all bank accounts for the applicant.

If you request transactions.csv, you will get back a csv of all transactions.

Request

Requires Authorization

GET: https://sandbox.approveowl.com/api/v1/applicants/:applicant_id/transactions

ParameterTypeDescription
:applicant_idstringThe applicant ID

Example Response

[
  {
    "date": "2020-05-13",
    "is_pending": true,
    "bank_account": "Regions Bank Checking 1428",
    "description": "Amazon",
    "category": "Shops",
    "location": "",
    "amount": "-75.66"
  },
  {
    "date": "2020-05-13",
    "is_pending": true,
    "bank_account": "Regions Bank Checking 1428",
    "description": "McDonald's",
    "category": "Food and Drink > Restaurants > Fast Food",
    "location": "Lewisville, TX",
    "amount": "-5.4"
  },
  {
    "date": "2020-05-13",
    "is_pending": false,
    "bank_account": "Regions Bank Checking 1428",
    "description": "PHO 95",
    "category": "Food and Drink > Restaurants",
    "location": "Flower Mound, TX",
    "amount": "-17.12"
  },
  {
    "date": "2020-05-13",
    "is_pending": false,
    "bank_account": "Regions Bank Checking 1428",
    "description": "McDonald's",
    "category": "Food and Drink > Restaurants > Fast Food",
    "location": "Lewisville, TX",
    "amount": "-3.99"
  },
  {
    "date": "2020-05-13",
    "is_pending": false,
    "bank_account": "Regions Bank Checking 1428",
    "description": "DEPOSIT",
    "category": "Transfer > Deposit",
    "location": "",
    "amount": "72.94"
  },
  {
    "date": "2020-05-12",
    "is_pending": false,
    "bank_account": "Regions Bank Checking 1428",
    "description": "CASH APP*ALICIA 2218",
    "category": "Service",
    "location": "",
    "amount": "-28.5"
  }
]

Request CSV

Requires Authorization

GET: https://sandbox.approveowl.com/api/v1/applicants/:applicant_id/transactions

ParameterTypeDescription
:applicant_idstringThe applicant ID

Example CSV Response

date,is_pending,bank_account,description,category,location,amount
2020-05-13,true,Regions Bank Checking 1428,Amazon,Shops,"",-75.66
2020-05-13,true,Regions Bank Checking 1428,McDonald's,Food and Drink > Restaurants > Fast Food,"Lewisville, TX",-5.4
2020-05-13,false,Regions Bank Checking 1428,PHO 95,Food and Drink > Restaurants,"Flower Mound, TX",-17.12
2020-05-13,false,Regions Bank Checking 1428,McDonald's,Food and Drink > Restaurants > Fast Food,"Lewisville, TX",-3.99
2020-05-13,false,Regions Bank Checking 1428,DEPOSIT,Transfer > Deposit,"",72.94