Skip to content
本页目录

搜图接口

此文档为以图搜番的接口!

以图搜番接口

请求路由

/ako/trace

请求方法

POST

请求头参数
请求参数请求内容是否必传参数类型参数说明
Content-Typemultipart/form-dataString参数格式
请求体参数
请求参数是否必传参数类型参数说明
imageFile图片文件
响应字段
JSON
[
  {
    "aniName": String,  // 文件名
    "video": String,  // 视频
    "videoCover": String,  // 封面
    "similarity": String,  // 匹配度,默认只返回大于85%的数据
    "from": String,  // 出现时间
    "to": String,  // 结束时间
    "torrents": [  // 字幕文件信息:Array
      {
        "torrent": String,  // 字幕文件
        "torrentHash": String,  // 文件Hash
        "torrentName": String,  // 文件名
        "size": String,  // 文件大小
        "date": String,  // 上传日期
      }
    ]
  }
]