Create and manage payment charges
Kaito Merchant API (2.0.0)
Merchant services including payment acceptance, settlements, and financial reporting.
Payment Acceptance: In-person payment acceptance supporting nfc (Tap-to-Pay), qr (QR code), alias (handle resolution), and card_present (chip/swipe).
Charge Flow: Create merchant -> Create charge -> Display QR/NFC -> Confirm via polling or webhook.
Refunds: Full or partial refunds via /refunds.
Banking & Settlements: View settlement history via /settlements, account balances via /balances, and download reconciliation reports in CSV, XLSX, or JSON format. Query /fees for fee breakdown.
Download OpenAPI description
Overview
URL
Kaito Developer Support
License
Languages
Servers
Mock server
https://developer.kaito.io/_mock/merchant/
Production
https://api.kai2.io/
Sandbox
https://sandbox.api.kai2.io/
- Mock serverhttps://developer.kaito.io/_mock/merchant/v1/fees
- Productionhttps://api.kai2.io/v1/fees
- Sandboxhttps://sandbox.api.kai2.io/v1/fees
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.kaito.io/_mock/merchant/v1/fees?from=2019-08-24&to=2019-08-24' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "from": "2019-08-24", "to": "2019-08-24", "currency": "string", "items": [ { … } ], "total": 0 }