IZZIPAYDocumentation
Getting Started
Get up and running with IZZIPAY in three simple steps. You will be making your first API call in under 5 minutes.
1
Create Your Account
Sign up for a free IZZIPAY developer account. No credit card required.
Visit https://dashboard.izzipay.com/register to create your account.
2
Get Your API Key
Navigate to your dashboard and generate a test API key. You will get two keys:
sk_test_...Test mode — no real money movessk_live_...Live mode — real transactions3
Make Your First Request
Use your test key to make your first API call:
cURL
bash
curl -X POST https://api.izzipay.com/v1/wallets \
-H "Authorization: Bearer sk_test_your_key" \
-H "Content-Type: application/json" \
-d '{
"name": "My First Wallet",
"currency": "USD",
"type": "personal"
}'JavaScript
javascript
import { IzzipayClient } from '@izzipay/sdk';
const client = new IzzipayClient('sk_test_your_key');
const wallet = await client.wallets.create({
name: 'My First Wallet',
currency: 'USD',
type: 'personal',
});
console.log(wallet.id); // wal_abc123...Python
python
import izzipay
client = izzipay.Client("sk_test_your_key")
wallet = client.wallets.create(
name="My First Wallet",
currency="USD",
type="personal"
)
print(wallet.id) # wal_abc123...