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
Request
This endpoint lists all buy, sell, and maturity events for securities (T-bills) within the customer's accounts.
Returns a paginated TradeListResponse. The list can be filtered by account and a trade datetime range.
Filters the resulting trade list by book date from the provided ISO8601 date, inclusively
Filters the resulting trade list by book date from the provided ISO8601 date, inclusively
Filters the resulting trade list by book date to the provided ISO8601 date, inclusively
Filters the resulting trade list by book date to the provided ISO8601 date, inclusively
Filters the resulting trade list by settlement date from the provided ISO8601 date, inclusively
Filters the resulting trade list by settlement date from the provided ISO8601 date, inclusively
Filters the resulting trade list by settlement date to the provided ISO8601 date, inclusively
Filters the resulting trade list by settlement date to the provided ISO8601 date, inclusively
- Production serverhttps://api.business.jiko.io/api/v1/trades/
- Sandbox serverhttps://customer-api.sandbox-api.jikoservices.com/api/v1/trades/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.business.jiko.io/api/v1/trades/?book_date_from=2019-08-24&book_date_to=2019-08-24&settlement_date_from=2019-08-24&settlement_date_to=2019-08-24&account%5B%5D=497f6eca-6276-4993-bfeb-53cbbbba6f08&trade_datetime_from=2019-08-24T14%3A15%3A22Z&trade_datetime_to=2019-08-24T14%3A15%3A22Z&limit=30' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "prev_page": "string", "next_page": "string", "items": [ { … } ], "object_type": "CursorList" }
Request
This endpoint downloads the customer's complete trade history as a CSV file.
This is useful for record-keeping and analysis and can be filtered by account and a trade datetime range.
Filters the resulting trade list by book date from the provided ISO8601 date, inclusively
Filters the resulting trade list by book date from the provided ISO8601 date, inclusively
Filters the resulting trade list by book date to the provided ISO8601 date, inclusively
Filters the resulting trade list by book date to the provided ISO8601 date, inclusively
Filters the resulting trade list by settlement date from the provided ISO8601 date, inclusively
Filters the resulting trade list by settlement date from the provided ISO8601 date, inclusively
Filters the resulting trade list by settlement date to the provided ISO8601 date, inclusively
Filters the resulting trade list by settlement date to the provided ISO8601 date, inclusively
- Production serverhttps://api.business.jiko.io/api/v1/trades.csv
- Sandbox serverhttps://customer-api.sandbox-api.jikoservices.com/api/v1/trades.csv
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.business.jiko.io/api/v1/trades.csv?book_date_from=2019-08-24&book_date_to=2019-08-24&settlement_date_from=2019-08-24&settlement_date_to=2019-08-24&account%5B%5D=497f6eca-6276-4993-bfeb-53cbbbba6f08&trade_datetime_from=2019-08-24T14%3A15%3A22Z&trade_datetime_to=2019-08-24T14%3A15%3A22Z' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "prev_page": "string", "next_page": "string", "items": [ { … } ], "object_type": "CursorList" }
Request
This endpoint downloads the confirmation for a specific trade, and returns a 307 Temporary Redirect to the trade confirmation PDF location.
Trade confirmations are sensitive documents. For security reasons, we return trade confirmations as PDFs through a URL with a 10-minute TTL.
Trade confirmation PDFs should be fetched and served just-in-time, not stored in databases.
Trades with "activity": "MATURITY" do not have trade confirmations.
- Production serverhttps://api.business.jiko.io/api/v1/accounts/{account_id}/trades/{trade_id}/confirmation/
- Sandbox serverhttps://customer-api.sandbox-api.jikoservices.com/api/v1/accounts/{account_id}/trades/{trade_id}/confirmation/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.business.jiko.io/api/v1/accounts/{account_id}/trades/{trade_id}/confirmation/' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'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.
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.