
5118助手
名称 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
url | string | 是 | 要查的网站 | |
page_index | int | 否 | 1 | 当前分页 |
名称 | 类型 | 默认值 | 说明 |
---|---|---|---|
errcode | string | 0 | 返回的错误代码 |
errmsg | string | 返回的错误说明 | |
total | int | 总数量 | |
page_count | int | 总页数 | |
page_index | int | 1 | 当前分页 |
page_size | int | 500 | 每页返回数据的数量(最大返回数量500条) |
keyword | string | 关键词 | |
rank | int | 排名 | |
page_title | string | 网页标题 | |
bidword_companycount | int | 竞价公司数量 | |
long_keyword_count | int | 长尾词数量 |
神马指数 倒序
{ "errcode": "0", "errmsg": "", "data": { "total": "148479", "page_count": 297, "page_index": 1, "page_size": 500, "sm": [ { "keyword": "水质检测仪器", "rank": 1, "index": 287, "long_keyword_count": 4263, "page_title": "测水质仪器新款-测水质仪器2021年新款-京东", "bidword_companycount": 374 } ... ] } }
错误码 | 说明 |
---|---|
100101 | 调用次数不够,请充值 |
100102 | 服务每秒调用量超限 |
100103 | 服务每小时调用量超限 |
100104 | 服务每天调用量超限 |
100111 | 调用字数不够,请充值 |
100201 | url无法解析 |
100202 | 请求缺少apikey |
100203 | 无效的apikey |
100204 | api不存在 |
100205 | api已经关闭 |
100206 | 后端服务响应status非200 |
100207 | 后端服务未正确接入 |
100208 | 请求方式不支持 |
100301 | Api商城 内部错误 |
100302 | 请求后端服务过程中错误 |
100303 | 系统繁忙稍候再试 |
100403 | 您输入的apikey不正确 |
错误码 | 说明 |
---|---|
200101 | 暂无数据 |
200201 | 传进参数为空 |
200202 | 用户ID为空 |
200204 | 请提交要查询的网址 |
200301 | 请提交正确格式的网址 |
2 | 002 | 01 |
---|---|---|
服务器错误(1:为系统级别错误) | 服务模块代码(即数据ID) | 具体错误代码 |
名称 | 价格 | 次数 | 说明 |
---|---|---|---|
首次试用套餐 | 0.00 | 100 | |
套餐一 | 500.00 | 10000 | |
套餐二 | 3000.00 | 100000 | |
套餐三 | 15000.00 | 1000000 | |
套餐四 | 75000.00 | 10000000 |
<?php
$host = "http://apis.5118.com";
$path = "/keyword/sm/v2";
$method = "POST";
$apikey = "你要调用API的apikey";
$headers = array();
array_push($headers, "Authorization:" . $apikey);
//根据API的要求,定义相对应的Content-Type
array_push($headers, "Content-Type".":"."application/x-www-form-urlencoded; charset=UTF-8");
$querys = "";
$bodys = "url=url&page_index=page_index";
$url = $host . $path;
$curl = curl_init();
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_FAILONERROR, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HEADER, true);
if (1 == strpos("$".$host, "https://"))
{
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
}
curl_setopt($curl, CURLOPT_POSTFIELDS, $bodys);
var_dump(curl_exec($curl));
?>