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/directory/contacts
- Productionhttps://api.kai2.io/v1/directory/contacts
- Sandboxhttps://sandbox.api.kai2.io/v1/directory/contacts
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.kaito.io/_mock/users/v1/directory/contacts \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"ownerRef": "string",
"name": "string",
"destination": "string"
}'Response
application/json
{ "contactId": "string", "ownerRef": "string", "name": "string", "destination": "string", "createdAt": "2019-08-24T14:15:22Z" }
- Mock serverhttps://developer.kaito.io/_mock/users/v1/directory/contacts
- Productionhttps://api.kai2.io/v1/directory/contacts
- Sandboxhttps://sandbox.api.kai2.io/v1/directory/contacts
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.kaito.io/_mock/users/v1/directory/contacts?ownerRef=string&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/directory/contacts/{contactId}
- Productionhttps://api.kai2.io/v1/directory/contacts/{contactId}
- Sandboxhttps://sandbox.api.kai2.io/v1/directory/contacts/{contactId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://developer.kaito.io/_mock/users/v1/directory/contacts/{contactId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'