Manage webhook subscriptions
Kaito Platform API (2.0.0)
Platform services including webhooks and blockchain gateway operations.
Webhooks: Register endpoints for event notifications. Kaito signs requests using HMAC-SHA256 with Kaito-Timestamp and Kaito-Signature headers. Events include payment, payout, quote, checkout, identity, and acceptance categories.
Chain Gateway: Low-level blockchain operations for Ethereum, Polygon, Solana, and Bitcoin. Includes fee estimation and transaction broadcast for partners managing their own key material.
Download OpenAPI description
Overview
URL
Kaito Developer Support
License
Languages
Servers
Mock server
https://developer.kaito.io/_mock/platform/
Production
https://api.kai2.io/
Sandbox
https://sandbox.api.kai2.io/
- Mock serverhttps://developer.kaito.io/_mock/platform/v1/chain/estimate-fee
- Productionhttps://api.kai2.io/v1/chain/estimate-fee
- Sandboxhttps://sandbox.api.kai2.io/v1/chain/estimate-fee
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.kaito.io/_mock/platform/v1/chain/estimate-fee \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"network": "ethereum",
"from": "string",
"to": "string",
"asset": "USDT",
"amount": "10.0"
}'Response
application/json
{ "network": "ethereum", "estimatedFee": { "amount": "0.12", "currency": "MATIC", "tier": "standard" }, "alternatives": [ { … } ] }