Use these endpoints to view and manage personal details for a Customer.
Jiko Partner API (Version: fd60d28d)
Welcome to the Jiko API Reference! Jiko enables you to integrate money storage and movement, backed by the safety and security of US Treasury Bills. Use the Partner API if you are building an application that embeds Jiko’s services and offers Jiko products to your own customers. The Partner API will then enable your application to interact with Jiko on behalf of your customers.
At the core of our platform is the Jiko Pocket: a pair consisting of a bank account and a brokerage account. When money is deposited into a Pocket, the funds are automatically invested in T-bills. When a payment or withdrawal is made, T-bills are immediately liquidated and used as cash. Customers can have multiple Pockets, and each Pocket is associated with a single T-bill maturity: 4-week, 13-week, 26-week or 52-week.
The API Reference covers everything you need to build a full application leveraging the Jiko platform:
- Onboarding customers
- Funding Pockets via ACH or Wire
- Viewing and managing Pockets (including monthly statements and trade confirmations)
- Making payments and transfers via ACH, Wire, On-Us (Book) Transfer or Debit Card
When you’re ready to start building, please contact us at partner.support@jiko.io to request sandbox access.
Use these endpoints to view Account information. Jiko Accounts (also known as Pockets) consist of a bank account and a brokerage account. When funds are deposited into a Pocket, they’re immediately invested in T-bills.
In the API interface, the Account object encapsulates both accounts and can be treated as a single account to deposit to or withdraw from.
- Production serverhttps://your-partner-name.partner-api.jikoservices.com/api/v1/customers/{customer_id}/
- Sandbox serverhttps://your-partner-name.sandbox-api.jikoservices.com/api/v1/customers/{customer_id}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://your-partner-name.partner-api.jikoservices.com/api/v1/customers/{customer_id}/' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'x-jiko-idempotency: 497f6eca-6276-4993-bfeb-53cbbbba6f08' \
-H 'x-jiko-signature: string'Successful Response
Apartment, Suite, Box number, etc.
Apartment, Suite, Box number, etc.
State (Postal Abbreviations. Example: "AL", "NJ", "OH")
State (Postal Abbreviations. Example: "AL", "NJ", "OH")
{ "address": { "street_address": "2000 Allston Way", "city": "Berkeley", "postal_code": "94701", "state": "CA", "country": "USA" }, "email": "jiko@example.com", "phone_number": "15551234567", "account_status": "OPEN", "type": "INDIVIDUAL", "name": { "first_name": "Jiko", "last_name": "Customer" }, "date_of_birth": "1970-01-01", "identification_number": { "identification_number": "*****1234", "identification_type": "SSN" }, "trusted_contact": { "first_name": "Jiko Customer", "last_name": "Trusted Contact", "email": "jiko-trusted-contact@example.com", "phone_number": "+15551234500", "address": "2000 Allston Way, Berkeley CA 94701 USA" } }
Request
Updates details for a given Customer, including contact information and Trusted Contact information. This endpoint can also be used to close customer accounts with the CloseCustomerAccount request body schema. Before closing a customer's account, all customer Pockets must have a zero balance.
NOTE: Update Customer Data isn’t available by default and must be enabled — please contact your Jiko point of contact to learn more.
- Production serverhttps://your-partner-name.partner-api.jikoservices.com/api/v1/customers/{customer_id}/
- Sandbox serverhttps://your-partner-name.sandbox-api.jikoservices.com/api/v1/customers/{customer_id}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
- update_customer_data
- close_customer_account
curl -i -X PATCH \
'https://your-partner-name.partner-api.jikoservices.com/api/v1/customers/{customer_id}/' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'x-jiko-idempotency: 497f6eca-6276-4993-bfeb-53cbbbba6f08' \
-H 'x-jiko-signature: string' \
-d '{
"email": "jiko@example.com",
"phone_number": "15551234567",
"address": {
"street_address": "2000 Allston Way",
"city": "Berkeley",
"postal_code": "94701",
"state": "CA",
"country": "US"
},
"trusted_contact": {
"first_name": "Jiko Customer",
"last_name": "Trusted Contact",
"email": "jiko-trusted-contact@example.com",
"phone_number": "+15551234500",
"address": "2000 Allston Way, Berkeley CA 94701 USA"
}
}'Successful Response
Apartment, Suite, Box number, etc.
Apartment, Suite, Box number, etc.
State (Postal Abbreviations. Example: "AL", "NJ", "OH")
State (Postal Abbreviations. Example: "AL", "NJ", "OH")
- updated_customer
- customer_closed
{ "address": { "street_address": "2000 Allston Way", "city": "Berkeley", "postal_code": "94701", "state": "CA", "country": "USA" }, "email": "jiko@example.com", "phone_number": "15551234567", "account_status": "OPEN", "type": "INDIVIDUAL", "name": { "first_name": "Jiko", "last_name": "Customer" }, "date_of_birth": "1970-01-01", "identification_number": { "identification_number": "*****1234", "identification_type": "SSN" }, "trusted_contact": { "first_name": "Jiko Customer", "last_name": "Trusted Contact", "email": "jiko-trusted-contact@example.com", "phone_number": "+15551234500", "address": "2000 Allston Way, Berkeley CA 94701 USA" } }
- Production serverhttps://your-partner-name.partner-api.jikoservices.com/api/v1/customers/{customer_id}/beneficial-owners/
- Sandbox serverhttps://your-partner-name.sandbox-api.jikoservices.com/api/v1/customers/{customer_id}/beneficial-owners/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://your-partner-name.partner-api.jikoservices.com/api/v1/customers/{customer_id}/beneficial-owners/' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'x-jiko-idempotency: 497f6eca-6276-4993-bfeb-53cbbbba6f08' \
-H 'x-jiko-signature: string'{ "items": [ { … } ] }
Use these endpoints to view Transactions of funds moving in and out of Jiko Accounts, 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.