稳定、快速、免费的 API 接口服务
文字找茬
接口地址: https://api.52vmy.cn/api/wl/s/find
返回格式: JSON
请求方式: GET
请求示例: https://api.52vmy.cn/api/wl/s/find
接口定制: 点此加入用户群
默认QPS: 每2秒最多3次 携带Token可无视限制
请求参数说明:
名称 | 必填 | 类型 | 说明 |
---|---|---|---|
x | 否 | string | X轴最大长度,默认10 |
y | 否 | string | Y轴最大长度,默认10 |
type | 否 | string | 返回格式默认JSON可选text |
返回参数说明:
名称 | 类型 | 说明 |
---|
返回示例:
{ "code": 200, "msg": "成功", "data": { "content": "呃呃呃呃呃呃呃呃呃厄\n呃呃呃呃呃呃呃呃呃呃\n呃呃呃呃呃呃呃呃呃呃\n呃呃呃呃呃呃呃呃呃呃\n呃呃呃呃呃呃呃呃呃呃\n呃呃呃呃呃呃呃呃呃呃\n呃呃呃呃呃呃呃呃呃呃\n呃呃呃呃呃呃呃呃呃呃\n呃呃呃呃呃呃呃呃呃呃\n呃呃呃呃呃呃呃呃呃呃", "x": 1, "y": 10 } }
请求参数设置:
参数名称 | 参数值 |
---|---|
错误码格式说明:
名称 | 类型 | 说明 |
---|
PHP代码示例:
$x = $_GET["x"]; $y = $_GET["y"]; $type = $_GET["type"]; $url = "https://api.52vmy.cn/api/wl/s/find?x=".$x."&y=".$y."&type=".$type; echo file_get_contents($url);