IZZIPAYInvestment
Crowdfunding API Reference
Complete API documentation with request/response examples and curl commands.
Base URL
https://api.izzipay.comEndpoints
| Method | Path | Description |
|---|---|---|
| POST | /v1/crowdfunding/campaigns | Create campaign |
| POST | /v1/crowdfunding/campaigns/:id/invest | Make investment |
| GET | /v1/crowdfunding/campaigns/:id/progress | Get campaign progress |
Quick Start
Example: Create campaign
bash
curl -X POST \
https://api.izzipay.com/v1/crowdfunding/campaigns \
-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.