API Icon

QQ信息查询 正常

查询qq号信息

GET/POST JSON 调用: 32,002 测速中...

基本信息

接口地址
请求方式 GET/POST
返回格式 JSON
调用权限 公开/免费

请求参数说明

参数名 必填 类型 说明 示例值
qq 必填 string 要查询的qq 2823280574

调用示例

PHP cURL

$url = 'https://api.bugpk.com/api/qq_info';
$params = [
    'key' => 'value' // 请替换实际参数
];

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url . '?' . http_build_query($params));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
curl_close($ch);

echo $response;
                                    

返回结果示例

JSON Response
{
    "success": true,
    "msg": "查询成功!",
    "data": {
        "qq": 2823280574,
        "name": "江十二",
        "email": "[email protected]",
        "avatar": "https://q2.qlogo.cn/headimg_dl?dst_uin=2823280574&spec=640"
    },
    "time": "2025-06-13 16:44:34",
    "api_vers": "qqinfo_v5"
}

返回参数说明

参数名 类型 说明 示例
success string 状态码
msg string 结果信息
data string 数据信息
data[qq] string QQ号
data[name] string QQ昵称
data[email] string QQ邮箱
data[avatar] string QQ头像

调试参数

响应结果

--
点击左侧"发送请求"查看结果...