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/identity/verify
- Productionhttps://api.kai2.io/v1/identity/verify
- Sandboxhttps://sandbox.api.kai2.io/v1/identity/verify
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.kaito.io/_mock/users/v1/identity/verify \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'Idempotency-Key: string' \
-d '{
"type": "KYC",
"subject": {
"firstName": "string",
"lastName": "string",
"dob": "2019-08-24",
"nationalId": "string",
"country": "string",
"email": "user@example.com",
"phone": "string",
"businessName": "string",
"registrationNumber": "string",
"businessType": "corporation"
},
"documents": [
{
"type": "passport",
"file": "string",
"side": "front"
}
],
"callbackUrl": "http://example.com"
}'Response
application/json
{ "verificationId": "ver_01JH...", "type": "KYC", "status": "pending", "subject": { "firstName": "string", "lastName": "string", "dob": "2019-08-24", "nationalId": "string", "country": "string", "email": "user@example.com", "phone": "string", "businessName": "string", "registrationNumber": "string", "businessType": "corporation" }, "reason": "string", "riskScore": 0, "createdAt": "2019-08-24T14:15:22Z", "expiresAt": "2019-08-24T14:15:22Z" }
- Mock serverhttps://developer.kaito.io/_mock/users/v1/identity/verifications
- Productionhttps://api.kai2.io/v1/identity/verifications
- Sandboxhttps://sandbox.api.kai2.io/v1/identity/verifications
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.kaito.io/_mock/users/v1/identity/verifications?status=pending&type=KYC&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/identity/verifications/{verificationId}
- Productionhttps://api.kai2.io/v1/identity/verifications/{verificationId}
- Sandboxhttps://sandbox.api.kai2.io/v1/identity/verifications/{verificationId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.kaito.io/_mock/users/v1/identity/verifications/{verificationId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "verificationId": "ver_01JH...", "type": "KYC", "status": "pending", "subject": { "firstName": "string", "lastName": "string", "dob": "2019-08-24", "nationalId": "string", "country": "string", "email": "user@example.com", "phone": "string", "businessName": "string", "registrationNumber": "string", "businessType": "corporation" }, "reason": "string", "riskScore": 0, "createdAt": "2019-08-24T14:15:22Z", "expiresAt": "2019-08-24T14:15:22Z" }