IZZIPAYBanking

Digital Banking API Reference

Complete API documentation with request/response examples and curl commands.

Base URL

https://api.izzipay.com

Endpoints

MethodPathDescription
POST/v1/banking/accountsOpen a new account
POST/v1/banking/cards/issueIssue virtual/physical card
POST/v1/banking/transfers/domesticDomestic bank transfer

Quick Start

Example: Open a new account

bash
curl -X POST \
  https://api.izzipay.com/v1/banking/accounts \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "amount": 10000,
    "currency": "USD"
  }'

Authentication

All API requests require a Bearer token in the Authorization header. Get your API keys from the Developer Portal.