Verify zkKYC Status
Get KYC statistics status
https://openapi.zk.me/kyc/v1/status
?mch_no=YourMerchantNumber
&api_key=YourApiKeyParameters #
Name
Type
Description
Sample Response
{
"code": 200,
"message": "success",
"data": {
"kyc_participants": 22,
"kyc_verified": 0,
"kyc_participants_daily": [
{
"date": "2023-07-27",
"participants": 2
},
{
"date": "2023-07-28",
"participants": 1
},
{
"date": "2023-08-09",
"participants": 1
},
{
"date": "2023-08-13",
"participants": 2
},
{
"date": "2023-09-14",
"participants": 1
},
{
"date": "2023-09-25",
"participants": 1
},
{
"date": "2023-10-27",
"participants": 2
},
{
"date": "2023-12-01",
"participants": 1
},
{
"date": "2024-01-05",
"participants": 1
},
{
"date": "2024-01-06",
"participants": 1
},
{
"date": "2024-01-10",
"participants": 2
},
{
"date": "2024-01-15",
"participants": 1
},
{
"date": "2024-01-16",
"participants": 1
},
{
"date": "2024-01-17",
"participants": 3
},
{
"date": "2024-01-19",
"participants": 1
},
{
"date": "2024-01-24",
"participants": 1
}
],
"kyc_verified_daily": null,
"meid_count": 4
}
}Get Users List
https://openapi.zk.me/kyc/v1/users
?mch_no=YourMerchantNumber
&api_key=YourApiKey
&page=1
&num=10Parameters#
Name
Type
Description
Sample response
{
"code": 200,
"message": "success",
"data": {
"data": [
{
"zkme_id": "...",
"verify_time": "",
"account": "...",
"blockchain_id": ...,
"blockchain_logo_url": "...",
"program_type": "...",
"network": "",
"token_id": "...",
"user_wallet_address": "...",
"authorization_info": null,
"user_id": "",
"ssi_wallet_address": ""
}
],
"page": {
"page": 1,
"num": 10,
"total": 1
}
}
}Get Program Configuration Details
POST https://agw.zk.me/zkseradmin/openapi/queryProgramConfigInfoSample Response
{
"code": 80000000,
"msg": "success",
"timestamp": 1757088277804,
"data": {
"programName": "localhost 10",
"status": 2,
"statusText": "Create",
"verifiableAttributes": [
{
"category": 1,
"kycVerifyProperty": "Citizenship",
"order": 12,
"status": "FORCE_ENABLE",
"value": [
{ "id": 1, "regularName": "Afghanistan" },
{ "id": 2, "regularName": "Aland Islands" }
// ...
],
"verifiableAttributeEnum": "CITIZENSHIP"
},
{
"category": 1,
"kycVerifyProperty": "A user's real identity can only be verified through KYC once within this KYC Program",
"order": 18,
"status": "DEFAULT_DISABLE",
"value": true,
"verifiableAttributeEnum": "UNIQUENESS_CHECK"
},
{
"category": 1,
"kycVerifyProperty": "Sanctions, Warnings, and Fitness & Probity",
"order": 14,
"status": "ENABLE",
"value": true,
"verifiableAttributeEnum": "SANCTION"
},
{
"category": 1,
"kycVerifyProperty": "Age",
"order": 4,
"status": "FORCE_ENABLE",
"value": "18",
"verifiableAttributeEnum": "AGE"
}
]
}
}Fields Explanation
Name
Type
Description
data object
Name
Type
Description
verifiableAttributes object
Name
Type
Description
Get Users KYC Result Overview
Get Users Accredited Investor Status Overview
Last updated