Skip to Content

Build on Inzi

Accept stablecoin payments with 3 API calls. Create checkout → get webhook → done.

Read the docs

Get API keys


Why Inzi?


Quick example

Create a checkout in one API call:

Create a checkout
curl -X POST https://api.inzilink.com/api/v1/checkouts \ -H "Authorization: Bearer sk_test_xxxxx" \ -H "Content-Type: application/json" \ -d '{ "amount": "25.00", "currency": "USD", "metadata": { "order_id": "ORD-123" }, "redirect_url": "https://yoursite.com/success" }'

Response:

Response
{ "id": "chk_test_abc123def456", "status": "pending", "amount": "25.00", "currency": "USD", "checkout_url": "https://inzilink.com/p/abc123", "expires_at": "2026-04-04T12:30:00Z", "created_at": "2026-04-04T12:00:00Z" }

Redirect your user to checkout_url. They pick a chain, pay in USDC or USDT, and you get a webhook when it’s confirmed.


Supported chains & tokens

ChainTokensAvg Confirmation
PolygonUSDC, USDT~30 seconds
BaseUSDC~30 seconds
EthereumUSDC, USDT~1 minute
TronUSDT~30 seconds
TONUSDT~5 seconds

Your API call is identical across all chains. Inzi abstracts the blockchain away — merchants never deal with RPC nodes, gas fees, or wallet management.


Ready to integrate? Start with the quickstart →