NeteaseAPIDocs
  1. 实用工具
NeteaseAPIDocs
  • 使用说明
  • 联机大厅
    • 房间内玩家名称搜索
      POST
    • 获取房间列表
      POST
    • 获取所有地图的详细信息
      POST
    • 获取地图标签
      GET
    • 获取单个房间信息
      POST
    • 房间号搜索
      POST
    • 获取房间IP
      POST
  • 实用工具
    • 通过玩家uid获取玩家信息
      POST
    • 搜索玩家
      POST
    • 网易敏感词检测
      POST
    • UID互转
      POST
    • 获取基岩版客户端信息
      GET
  • PE端
    • PE版获取地图标签
      GET
    • 搜索PE端联机大厅地图
      POST
    • 获取PE联机大厅房间列表
      POST
    • 获取PE联机大厅地图列表
      POST
    • 获取PE端单个房间信息
      POST
  • 图片生成
    • PC端房间信息
      GET
    • PE端房间信息
      GET
  1. 实用工具

网易敏感词检测

POST
/api/check-sensitive-words
该接口已屏蔽大量请求导致封禁的问题(但是其他接口ip封禁则该接口就无法使用)
实用小功能:网易敏感词检测,支持x19(PC启动器端)的名称和字符串的敏感词检测与g79(手机端)的名称和字符串的敏感词检测

请求参数

Body 参数application/json

示例
{
    "words": "hello world!"
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://neteasemcapi.theconsole.top/api/check-sensitive-words' \
--header 'Content-Type: application/json' \
--data-raw '{
    "words": "hello world!"
}'

返回响应

🟢200成功
application/json
Body

示例
{
    "code": 200,
    "message": "检测成功",
    "IsBypass": true,
    "g79": {
        "name": {
            "NickNameRegularId": [],
            "OriginalNickName": "hello world!",
            "ReplaceNickName": "hello world!",
            "code": 0,
            "message": "pass"
        },
        "ReviewWord": {
            "OriginalContent": "hello world!",
            "ReplaceContent": "hello world!",
            "code": 0,
            "message": "pass",
            "regularIdList": {
                "Intercept": [],
                "Replace": [],
                "Shield": []
            }
        }
    },
    "x19": {
        "name": {
            "NickNameRegularId": [],
            "OriginalNickName": "hello world!",
            "ReplaceNickName": "hello world!",
            "code": 0,
            "message": "pass"
        },
        "ReviewWord": {
            "OriginalContent": "hello world!",
            "ReplaceContent": "hello world!",
            "code": 0,
            "message": "pass",
            "regularIdList": {
                "Intercept": [],
                "Replace": [],
                "Shield": []
            }
        }
    }
}
修改于 2025-05-05 04:14:09
上一页
搜索玩家
下一页
UID互转
Built with