Use this endpoint to fetch Agreements specific to your institution and Jiko.
Jiko Customer API (Version: fd60d28d)
Welcome to the Jiko Customer API Reference! Jiko enables you to integrate money storage and movement, backed by the safety and security of US Treasury Bills. Use the Customer API if you are a Jiko customer integrating Jiko directly into your internal systems.
For questions regarding authorization for the Customer API, please visit our OAuth guide
Use these endpoints to view Transactions of funds moving in and out of Jiko Pockets, specifically the bank account component (cash deposits and withdrawals). For viewing information regarding the brokerage account component (buying and selling of T-bills), use Trades.
Request
This endpoint lists all transactions for a customer's pockets. It provides a comprehensive view of all financial activities.
It returns a paginated list of Transaction objects, which can be of various types (ACH, WIRE, CARD, etc.).
It does not include transactions between the bank account and brokerage account.
- Production serverhttps://api.business.jiko.io/api/v2/transactions/
- Sandbox serverhttps://customer-api.sandbox-api.jikoservices.com/api/v2/transactions/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.business.jiko.io/api/v2/transactions/?limit=30&order=desc&pocket%5B%5D=497f6eca-6276-4993-bfeb-53cbbbba6f08&type%5B%5D=ACH&on_us_transfer%5B%5D=497f6eca-6276-4993-bfeb-53cbbbba6f08&wire%5B%5D=497f6eca-6276-4993-bfeb-53cbbbba6f08&time_booked_from=2019-08-24T14%3A15%3A22Z&time_booked_to=2019-08-24T14%3A15%3A22Z&amount_to=0&amount_from=0&direction=DEBIT' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Successful Response
- ACHTransactionActivity
- WireTransactionActivity
- CardTransactionActivity
- OnUsTransactionActivity
- FeeTransactionActivity
- CreditTransactionActivity
- GenericTransactionActivity
The ID of the transaction from the perspective of the respective pocket
The ID of the transaction this activity is representing
A description of the transaction type, e.g. "ACH Electronic Debit".
The time at which the transaction was originally booked into the ledger.
The time at which transaction was settled.
The time at which transaction was settled.
Status of the transactions. Has the transactions been settled
{ "prev_page": "string", "next_page": "string", "items": [ { … } ], "object_type": "CursorList" }
Request
This endpoint downloads a customer's transaction history in CSV format. This is useful for accounting and reconciliation purposes, and can be filtered by pocket, transaction type, and a time range.
- Production serverhttps://api.business.jiko.io/api/v2/transactions.csv
- Sandbox serverhttps://customer-api.sandbox-api.jikoservices.com/api/v2/transactions.csv
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.business.jiko.io/api/v2/transactions.csv?pocket%5B%5D=497f6eca-6276-4993-bfeb-53cbbbba6f08&type%5B%5D=ACH&time_booked_from=2019-08-24T14%3A15%3A22Z&time_booked_to=2019-08-24T14%3A15%3A22Z' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Use these endpoints to view Counterparties. Counterparties represent external accounts when moving funds in or out of a Jiko Account. Jiko will only transfer funds between accounts where the Counterparty has status: “VERIFIED”, meaning ownership of the account has been confirmed.