AI验证码识别接口

GET
https://v2.xxapi.cn/api/AiCaptchaRecognition

接口描述

免费API 提供AI验证码识别服务,只需上传验证码图片,即可通过AI快速识别出验证码内容。支持多种验证码类型(字符型、算术型、混合型),具备高识别率与低延迟特性,适合自动化测试、数据采集、业务系统验证场景使用。接口调用简单,开发者可快速集成,实现智能化验证码识别功能。

请求参数

相关套餐

请求示例

var axios = require('axios')

var config = {
  method: 'get',
  url: 'https://v2.xxapi.cn/api/AiImageRecognition?url=https://www.jfbym.com/static/pic/sy/c1-4/4.jpg'
}

axios(config)
  .then(function (response) {
    console.log(JSON.stringify(response.data))
  })
  .catch(function (error) {
    console.log(error)
  })

返回示例

{
    "code": 200,
    "msg": "数据请求成功",
    "data": "1256",
    "request_id": "ece77462948e4d03cd3df839"
}