IZZIPAYDevelopers

Banking API

Digital banking account and card management.

Base URL: https://api.izzipay.com/v1/banking

POST/v1/banking/accounts

Open account

cURL

bash
curl -X POST https://api.izzipay.com/v1/banking/accounts \
  -H "Authorization: Bearer sk_test_..." \
  -H "Content-Type: application/json"
GET/v1/banking/accounts/:id

Get account

cURL

bash
curl -X GET https://api.izzipay.com/v1/banking/accounts/:id \
  -H "Authorization: Bearer sk_test_..." \
  -H "Content-Type: application/json"
POST/v1/banking/cards/issue

Issue card

cURL

bash
curl -X POST https://api.izzipay.com/v1/banking/cards/issue \
  -H "Authorization: Bearer sk_test_..." \
  -H "Content-Type: application/json"
GET/v1/banking/cards/:id

Get card details

cURL

bash
curl -X GET https://api.izzipay.com/v1/banking/cards/:id \
  -H "Authorization: Bearer sk_test_..." \
  -H "Content-Type: application/json"
POST/v1/banking/transfers/domestic

Domestic transfer

cURL

bash
curl -X POST https://api.izzipay.com/v1/banking/transfers/domestic \
  -H "Authorization: Bearer sk_test_..." \
  -H "Content-Type: application/json"