
5118助手
名称 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
keyword | string | 是 | 查询关键词 | |
page_index | int | 否 | 1 | 当前分页 |
page_size | int | 否 | 100 | 每页返回数据的数量(最大返回数量100条) |
sort_fields | int | 否 | 排序字段(输入1-4下标,1:抖音指数,2:头条指数,3:抖音视频数,4:全网长尾词) | |
sort_type | string | 否 | desc | 升序或降序(asc:升序,desc:降序) |
filter | int | 否 | 1:所有词 | 快捷过滤(输入1-4下标,1:所有词,2:所有流量词,3:抖音指数词,4:头条指数词) |
filter_date | string | 否 | 筛选日期(时间格式:yyyy-MM-dd) |
名称 | 类型 | 默认值 | 说明 |
---|---|---|---|
errcode | string | 0 | 返回的错误代码 |
errmsg | string | 返回的错误说明 | |
total | int | 总数量 | |
page_count | int | 总页数 | |
page_index | int | 1 | 当前分页 |
page_size | int | 100 | 每页返回记录的数量 |
keyword | string | 关键词 | |
douyin_index | int | 抖音指数 | |
toutiao_index | int | 头条指数 | |
douyin_video_count | int | 抖音视频数 | |
long_keyword_count | int | 全网长尾词 |
{ "errcode": "0", "errmsg": "", "data": { "total": 1942, "page_count": 195, "page_index": 1, "page_size": 10, "word": [ { "keyword": "苹果手机两个系统怎么设置", "douyin_index": 0, "toutiao_index": 0, "douyin_video_count": 0, "long_keyword_count": 0 }, ... ] } }
错误码 | 说明 |
---|---|
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不正确 |
错误码 | 说明 |
---|---|
200201 | 传进参数为空 |
200202 | 用户ID为空 |
200203 | 请输入要查询的关键词 |
200406 | 输入时间格式有误,请按“yyyy-MM-dd”格式输入 |
200407 | 请输入长度大于1的关键词 |
200607 | 有重叠字符 |
200608 | 您搜索的关键词不支持查询 |
200999 | 查询条数超出最大上限 |
2 | 002 | 01 |
---|---|---|
服务器错误(1:为系统级别错误) | 服务模块代码(即数据ID) | 具体错误代码 |
名称 | 价格 | 次数 | 说明 |
---|---|---|---|
首次试用套餐 | 0.00 | 100 | |
套餐一 | 400.00 | 10000 | |
套餐二 | 2400.00 | 100000 | |
套餐三 | 12000.00 | 1000000 | |
套餐四 | 30000.00 | 5000000 |
<?php
$host = "https://apis.5118.com";
$path = "/keyword/douyin";
$method = "POST";
$apikey = "你要调用API的apikey,到 https://account.5118.com/signin/myapi 获取";
$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 = "keyword=keyword&page_index=1&page_size=10&sort_fields=1&sort_type=desc&filter=1&filter_date=2020-07-16";
$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);
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);
curl_exec($curl);
?>