Lock pricing and routing
Kaito Core API (2.0.0)
Core payment operations: Quotes, Payments, Payouts, and FX.
Rail Types: CRYPTO_CRYPTO (on-chain), FIAT_CRYPTO (on-ramp), CRYPTO_FIAT (off-ramp), FIAT_FIAT (cross-border).
Typical Flow: Get rates -> Create quote -> Execute payment/payout -> Track status.
Destination Types (Payments): handle, phone, address.
Beneficiary Types (Payouts): bank_account, cash_pickup, mobile_money.
Overview
URL
Kaito Developer Support
License
Languages
Servers
Mock server
https://developer.kaito.io/_mock/core/
Production
https://api.kai2.io/
Sandbox
https://sandbox.api.kai2.io/
- Mock serverhttps://developer.kaito.io/_mock/core/v1/execution-plans
- Productionhttps://api.kai2.io/v1/execution-plans
- Sandboxhttps://sandbox.api.kai2.io/v1/execution-plans
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.kaito.io/_mock/core/v1/execution-plans \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"quoteId": "string",
"mode": "best_price"
}'Response
application/json
{ "planId": "pln_01JH...", "quoteId": "string", "status": "planned", "steps": [ { … } ], "createdAt": "2019-08-24T14:15:22Z" }
- Mock serverhttps://developer.kaito.io/_mock/core/v1/execution-plans/{planId}
- Productionhttps://api.kai2.io/v1/execution-plans/{planId}
- Sandboxhttps://sandbox.api.kai2.io/v1/execution-plans/{planId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.kaito.io/_mock/core/v1/execution-plans/{planId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "planId": "pln_01JH...", "quoteId": "string", "status": "planned", "steps": [ { … } ], "createdAt": "2019-08-24T14:15:22Z" }