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/
Bodyapplication/jsonrequired
Enum"FIAT_FIAT""FIAT_CRYPTO""CRYPTO_FIAT""CRYPTO_CRYPTO"
Example: "CRYPTO_CRYPTO"
- Mock serverhttps://developer.kaito.io/_mock/core/v1/quotes
- Productionhttps://api.kai2.io/v1/quotes
- Sandboxhttps://sandbox.api.kai2.io/v1/quotes
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.kaito.io/_mock/core/v1/quotes \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'Idempotency-Key: string' \
-d '{
"railType": "CRYPTO_CRYPTO",
"sender": {
"amount": "1000.00",
"currency": "USD"
},
"receiver": {
"currency": "GTQ"
},
"corridor": "US-GT",
"rails": [
"CRYPTO"
],
"preferences": {}
}'Response
application/json
{ "quoteId": "qt_01JH...", "railType": "CRYPTO_CRYPTO", "corridor": "string", "sender": { "amount": "1000.00", "currency": "USD" }, "receiver": { "amount": "1000.00", "currency": "USD" }, "rate": "37.7310", "fees": [ { … } ], "expiresAt": "2019-08-24T14:15:22Z", "createdAt": "2019-08-24T14:15:22Z" }
- Mock serverhttps://developer.kaito.io/_mock/core/v1/quotes/{quoteId}
- Productionhttps://api.kai2.io/v1/quotes/{quoteId}
- Sandboxhttps://sandbox.api.kai2.io/v1/quotes/{quoteId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.kaito.io/_mock/core/v1/quotes/{quoteId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "quoteId": "qt_01JH...", "railType": "CRYPTO_CRYPTO", "corridor": "string", "sender": { "amount": "1000.00", "currency": "USD" }, "receiver": { "amount": "1000.00", "currency": "USD" }, "rate": "37.7310", "fees": [ { … } ], "expiresAt": "2019-08-24T14:15:22Z", "createdAt": "2019-08-24T14:15:22Z" }