Quick Start
Get up and running with neetpay in under 5 minutes.
1. Get your API key
Sign up at neetpay.com and navigate to Settings to generate your API key.
2. Create an invoice
terminal
curl -X POST https://api.neetpay.com/v1/invoice \
-H "Content-Type: application/json" \
-H "Authorization: Bearer sk_live_your_key" \
-d '{"amount": 10, "currency": "USD"}'3. Handle webhooks
Set up a webhook endpoint to receive payment notifications. We'll send a POST request with HMAC-SHA512 signature verification.