百度收录查询

利用SITE查询域名百度收录的条数

API 文档

请求参数说明:

名称 必填 类型 说明
url string 查询的域名

返回参数说明:

名称 类型 说明
code integer 返回的状态码
url string 查询的域名
count integer 百度收录的条数

返回示例:

{
     "code": 200,
     "url": "ba9.cn", 
     "count": "5" 
}

错误码格式说明:

名称 类型 说明
200 string 返回成功状态码
500 string 返回失败的状态码

代码示例:

<?php
// 初始化cURL会话
$ch = curl_init();
// 设置请求URL,用户中心获取token,自行替换其他参数
curl_setopt($ch, CURLOPT_URL, "https://api.ba9.cn/api/get.baidusl?url=ba9.cn");
// 设置请求头
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Authorization: YOUR_TOKEN'
));
// 返回响应而不是直接输出
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// 执行请求并获取响应
$response = curl_exec($ch);
// 关闭cURL会话
curl_close($ch);
// 将响应解析为JSON格式
$data = json_decode($response, true);
// 输出JSON数据
print_r($data);
?>
暂无示例
暂无示例
暂无示例
暂无示例
暂无示例
暂无示例