跳转到内容

泰国身份验证

身份证号码 + 姓名检查。

代码示例:

curl --location --request POST 'https://api.ekycpro.com/v1/thidcheck' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'X-API-Key: AbcdEfgh' \
--data-urlencode 'callback=https://YOUR_CALLBACK_URL' \
--data-urlencode 'name=ศิระกาญจน์ บัวเมือง&id=110370121881'

验证通过的响应示例

{
"status": "OK",
"message": {
"score": 1
}
}

验证未通过的响应示例

{
"status": "NOT",
"message": {
"score": 0.63
}
}

未找到人员的响应示例

{
"status": "PERSON_NOT_FOUND",
"message": "This person can’t be found in our system"
}

HTTP 请求

POST https://api.ekycpro.com/v1/thidcheck

请求参数

参数描述
nameoptional, string, 验证人员的姓名
idstring,身份证号码,13 位数字

响应格式

字段描述
status状态码
messagescore:姓名相似度分数,取值范围 [0-1]

状态码

状态码描述
OKcharge,在我们的数据库中找到 chargeNIK,且姓名相同
NOTcharge,在我们的数据库中找到 chargeNIK,但姓名不同
PERSON_NOT_FOUNDfree,在我们的数据库中未找到 NIK
INVALID_ID_NUMBERfree,无效的 NIK
RETRY_LATERfree,系统错误,请稍后重试