KYC/KYB verification
Kaito Users API (2.0.0)
User management: Identity verification, Wallets, and Directory services.
Identity (KYC/KYB): KYC for individual verification, KYB for company verification.
Wallets: Custodial wallet management with key material. Supports Ethereum, Polygon, Solana, Bitcoin.
Directory: Resolve handles, phones, addresses to destinations. Register handles and manage contact books.
Download OpenAPI description
Overview
URL
Kaito Developer Support
License
Languages
Servers
Mock server
https://developer.kaito.io/_mock/users/
Production
https://api.kai2.io/
Sandbox
https://sandbox.api.kai2.io/
- Mock serverhttps://developer.kaito.io/_mock/users/v1/wallets
- Productionhttps://api.kai2.io/v1/wallets
- Sandboxhttps://sandbox.api.kai2.io/v1/wallets
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.kaito.io/_mock/users/v1/wallets \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'Idempotency-Key: string' \
-d '{
"ownerRef": "usr_12345",
"network": "ethereum",
"custodyModel": "custodial"
}'Response
application/json
{ "wallet": { "walletId": "wlt_01JH...", "address": "string", "network": "ethereum", "custodyModel": "custodial", "createdAt": "2019-08-24T14:15:22Z" }, "secrets": { "address": "string", "privateKey": "string", "mnemonic": "string" } }
- Mock serverhttps://developer.kaito.io/_mock/users/v1/wallets
- Productionhttps://api.kai2.io/v1/wallets
- Sandboxhttps://sandbox.api.kai2.io/v1/wallets
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.kaito.io/_mock/users/v1/wallets?ownerRef=string&network=ethereum&limit=50&cursor=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "items": [ { … } ], "pagination": { "nextCursor": "string" } }
- Mock serverhttps://developer.kaito.io/_mock/users/v1/wallets/{walletId}
- Productionhttps://api.kai2.io/v1/wallets/{walletId}
- Sandboxhttps://sandbox.api.kai2.io/v1/wallets/{walletId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.kaito.io/_mock/users/v1/wallets/{walletId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "walletId": "wlt_01JH...", "address": "string", "network": "ethereum", "custodyModel": "custodial", "createdAt": "2019-08-24T14:15:22Z" }