Skip to content

撞库接口

接口信息

  • 接口地址POST /api/platform/strike-check
  • 接口说明:渠道合作方提交用户资质,万利通返回匹配结果

请求参数

参数类型必填说明
channelCodeString渠道编码
dataStringAES 加密后的 JSON 字符串

说明:

  • 平台当前实际强校验的外层字段为:channelCodedata
  • data 内字段建议按下方平台标准完整传递,字段越完整,匹配结果越准确

data 明文字段

参数类型必填说明
cnNameString用户姓名
sexString性别:1=男2=女
encryptMobileString手机号 MD5(32位小写)
phonePrefixString手机号前8位,例如:13812345
cityString城市名称
idNumberString身份证号
ageInteger年龄
educationInteger学历,见参数字典
houseInteger房产,见参数字典
vehicleInteger车辆,见参数字典
overdueInteger逾期情况
creditCardInteger信用卡
insuranceInteger保险
jobInteger职业
monthIncomeString月收入
gongjijinInteger公积金
shebaoInteger社保
zhimaInteger芝麻分等级,详见参数字典
weilidaiInteger微粒贷
jingdongInteger京东白条
huabeiInteger花呗
licenseTimeInteger营业执照时长(月)
amountInteger贷款金额(元)
loanTimeInteger贷款期限,见参数字典
loanForInteger贷款用途
salaryPayInteger工资发放
ipString用户 IP
urlString授权回调地址

响应参数

参数类型说明
codeInteger0-成功,其他-失败
msgString响应消息
dataObject响应数据

data 字段

参数类型说明
applyNoString申请单号
urlString落地页 URL
priceString渠道结算价格
platformNameString平台名称
productNameString产品名称
companyNameString公司名称
logUrlString平台配置 Logo
protocolListArray协议列表
phoneMd5ListArray命中手机号 MD5 列表

请求示例

json
{
  "channelCode": "CH001",
  "data": "encrypted_base64_string"
}

data 明文示例

json
{
  "cnName": "张三",
  "sex": "1",
  "encryptMobile": "5d41402abc4b2a76b9719d911017c592",
  "phonePrefix": "13812345",
  "city": "成都市",
  "idNumber": "510100199001011234",
  "age": 34,
  "education": 5,
  "house": 1,
  "vehicle": 2,
  "overdue": 0,
  "creditCard": 1,
  "insurance": 2,
  "job": 0,
  "monthIncome": "2",
  "gongjijin": 2,
  "shebao": 2,
  "zhima": 1,
  "weilidai": 1,
  "jingdong": 1,
  "huabei": 1,
  "amount": 50000,
  "loanTime": 2,
  "loanFor": 1,
  "salaryPay": 0,
  "ip": "114.114.114.114",
  "url": "https://your-domain.com/callback"
}

响应示例

json
{
  "code": 0,
  "msg": "",
  "data": {
    "applyNo": "PLT20260316123456789",
    "url": "https://platform.example.com/matching?order=PLT20260316123456789",
    "price": "15.00",
    "platformName": "万利通",
    "productName": "信用贷款",
    "companyName": "",
    "logUrl": "",
    "protocolList": [],
    "phoneMd5List": []
  }
}

注意事项

  1. applyNo 需保存,后续进件接口会使用。
  2. 收到 url 后,引导用户进入该地址完成后续授权。
  3. 用户资质信息越完整,匹配效果越准确。