Send payouts directly to Quickei user wallets from your platform.Documentation Index
Fetch the complete documentation index at: https://developer.quickei.io/llms.txt
Use this file to discover all available pages before exploring further.
What is the Partner Payout API?
The Partner Payout API allows external platforms to send money directly into Quickei user wallets. It is designed for aggregators, remittance providers, payroll services, and any platform that needs to disburse funds programmatically.Instant Delivery
Funds land in the recipient’s Quickei wallet in seconds, ready to spend or withdraw.
Multi-Currency
Send in any currency supported by your merchant wallet. Cross-currency payouts are converted automatically.
Webhook Notifications
Get real-time status updates for every payout via signed webhooks.
Use Cases
| Scenario | Description |
|---|---|
| Remittance | A remittance provider sends cross-border transfers to Quickei users |
| Payroll | A payroll service disburses salaries into employee wallets |
| Aggregator | A marketplace pays out sellers after order fulfillment |
| Rewards / Cashback | A loyalty platform credits user wallets with earned rewards |
Payout Flow
Lookup
Find the recipient by phone number or email using
POST /lookup. You receive a lookup_token valid for 10 minutes.Quote
Get the exchange rate and fees for the payout using
POST /quote. The quote is cached for 5 minutes.Payout
Execute the payout using
POST /payout. Your merchant wallet is debited and the user wallet is credited instantly.Sandbox vs Production
| Sandbox | Production | |
|---|---|---|
| Base URL | https://quickei.io/api/partner/sandbox/v1 | https://quickei.io/api/partner/v1 |
| Credentials | Sandbox API key from dashboard | Production API key from dashboard |
| Real money | No | Yes |
| Header | X-Quickei-Environment: sandbox | X-Quickei-Environment: production |
Sandbox and production share the same base URL. The environment is determined by which API key you use. Sandbox payouts do not move real funds.
Prerequisites
- A Quickei Merchant account with at least one funded wallet
- API credentials generated from the Merchant Dashboard under Developer API > API Keys
- Partner Payout API enabled by a Quickei admin (contact support if you don’t see the option)
Rate Limiting
The Partner Payout API allows 120 requests per minute. If exceeded, you’ll receive a429 Too Many Requests response with a Retry-After header.
Available Endpoints
| Method | Endpoint | Description |
|---|---|---|
POST | /lookup | Find a user by phone or email |
POST | /quote | Get exchange rate and fees |
POST | /payout | Execute a payout |
GET | /payout/{id} | Check payout status |
GET | /balance | Get merchant wallet balances |

