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/fx-quotes
- Productionhttps://api.kai2.io/v1/fx-quotes
- Sandboxhttps://sandbox.api.kai2.io/v1/fx-quotes
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.kaito.io/_mock/core/v1/fx-quotes \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'Idempotency-Key: string' \
-d '{
"baseCurrency": "USD",
"quoteCurrency": "GTQ",
"amount": 1000,
"side": "buy",
"lockDuration": 60
}'Response
application/json
{ "quoteId": "fxq_01JH...", "baseCurrency": "string", "quoteCurrency": "string", "amount": 0, "side": "buy", "rate": "7.7310", "convertedAmount": 7731, "fees": [ { … } ], "expiresAt": "2019-08-24T14:15:22Z", "createdAt": "2019-08-24T14:15:22Z" }
- Mock serverhttps://developer.kaito.io/_mock/core/v1/fx-quotes/{quoteId}
- Productionhttps://api.kai2.io/v1/fx-quotes/{quoteId}
- Sandboxhttps://sandbox.api.kai2.io/v1/fx-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/fx-quotes/{quoteId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "quoteId": "fxq_01JH...", "baseCurrency": "string", "quoteCurrency": "string", "amount": 0, "side": "buy", "rate": "7.7310", "convertedAmount": 7731, "fees": [ { … } ], "expiresAt": "2019-08-24T14:15:22Z", "createdAt": "2019-08-24T14:15:22Z" }