大淘客,让选品更简单! |

{{item.type_name}}:

API 市场 / 细分类目榜
 

细分类目榜
吐槽建议
应用场景:
可用搭建细分类目的榜单;也可用于单品详情,展示该商品细分类目的排名
接口说明:
接口返回某个具体细分类目榜单前20名商品数据,帮助用户购买决策,增加购买选择
使用人数: 2000+
细分类目榜 接口测试 建议使用通用GET方法调用
  • 接口说明
  • 更新日志
  • 接口版本号:v1.0.0

请求地址:https://openapi.dataoke.com/api/subdivision/get-rank-list 复制

请求方式:GET

公共参数:
请求参数:

注:请求参数须区分大小写

返回数据:
调用示例:
String url = "https://openapi.dataoke.com/api/subdivision/get-rank-list";
String appKey = "xxx";
String appSecret = "xxx";
TreeMap<String, String> paraMap = new TreeMap<>();
paraMap.put("version", "v1.0.0");
paraMap.put("appKey", appKey);
paraMap.put("subdivisionId", "16");
String data = ApiClient.sendReq(url, appSecret, paraMap);

SDK调用示例
String appKey = "xxx";
String appSecret = "xxx";
DtkApiClient client = DtkApiClient.getInstance(appKey,appSecret);
DtkGetRankListRequest request = new DtkGetRankListRequest();
request.setSubdivisionId("16");
DtkApiResponse < List < DtkGetDtkSearchGoodsResponse >> execute = client.execute(request);
 //细分类目榜
    $data = [
        'appKey' => "xxxxxxxxxxxx",
        'version' => "v1.0.0",
        ...
    ];
    $host = "https://openapi.dataoke.com/api/subdivision/get-rank-list";
    $url = $host . '?' . http_build_query($data);
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_TIMEOUT, $this->timeout);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    $output = curl_exec($ch);
    $a = curl_error($ch);
    if(!empty($a)){
        return json_encode(array('code'=>10003, 'msg'=>$a));
    }
    curl_close($ch);
    return $output;

    SDK调用示例
    $client = new GetSubdivisionRankList();
    $client->setAppKey("xxxxxxxxx");
    $client->setAppSecret("xxxxxxxxxxxxxxxxxxxxxxxxx");
    $client->setVersion("v1.0.0");

    $res = $client->setParams([])->request();

package main

import (
	"fmt"
	"gitee.com/dtk-developer/openapi-sdk-go/sdk"
)

func main() {
	// 1.初始化所需要的参数appKey, appSecret, version
	var (
		appKey = "xxxxxxxxxx"
		appSecret = "xxxxxxxxxx"
		version = "v1.3.1"
	)

	// 2.初始化开放平台api的客户端句柄
	oa := &sdk.OpenApi{}
	oa.AppKey = appKey
	oa.AppSecret = appSecret
	oa.Version = version
	client :=  oa.GetClient()

	// 3.准备请求参数
	params := map[string]string {
		"subdivisionId": "639331017111",
	}

	// 4.业务请求,示例使用细分类目榜和淘系万能解析接口,其它开放接口使用方法相同
	resp, err := client.SubdivisionRankList(params)
	if err != nil {
		panic(err)
	}
	fmt.Println(resp)

	// 复用client句柄
	params = map[string]string {
		// 指定接口版本
		"version": "v1.0.0",
		"content": "1👈¥fym8XiJU9Oi¥ https://s.click.taobao.com/Ys3TNlu  包邮 漫花抽纸10包4层加厚280张/包纸巾卫生纸家用实惠装面巾纸",
	}
	resp, err = client.ParseContent(params)
	if err != nil {
		panic(err)
	}
	fmt.Println(resp)
}
返回示例:
接口:api/subdivision/getRankList?subdivisionId=18&version=1.0.0
返回示例:
{
    "time": 1604368124012,
    "code": 0,
    "msg": "成功",
    "data": [
        {
            "id": "30130601",
            "goodsId": "573555380266",
            "title": "中国香港港版港货黄道益活络油原装代购正品跌打损伤舒筋活络50ml",
            "dtitle": "【黄道益】跌打损伤舒筋活络油50ml",
            "subdivisionName": "",
            "subdivisionRank": 0,
            "originalPrice": 89.0,
            "actualPrice": 88.0,
            "shopTyp": 1,
            "monthSales": 144246,
            "twoHoursSales": 4805,
            "dailySales": 77257,
            "commissionType": 3,
            "desc": "【满2件6折,可凑津贴满300减40,88vip再打95折】香港黄道益公司活络油道益创,活络舒筋,缓解酸僵,放松肩颈,舒缓经络身心,刮痧按摩,居家旅游必备!",
            "specialText": [
                "满2件6折"
            ],
            "couponReceiveNum": 50000,
            "couponLink": "https://uland.taobao.com/quan/detail?sellerId=2978398582&activityId=fe496b474f1942d0bea4063af8603d6e",
            "couponEndTime": "2020-11-03 23:59:59",
            "couponStartTime": "2020-11-01 00:00:00",
            "couponPrice": 1.0,
            "couponConditions": "5",
            "activityType": 1,
            "createTime": "2020-11-03 01:59:21",
            "mainPic": "https://img.alicdn.com/imgextra/i1/2978398582/O1CN01zQzNVp2DGbe96aO3K_!!2978398582.jpg",
            "marketingMainPic": "https://sr.ffquan.cn/dtk_user_fd/20201102/buff63iulrgd8jfrlihg0.jpg",
            "video": "",
            "sellerId": "2978398582",
            "cid": 4,
            "tbcid": "124978003",
            "discounts": 0.01,
            "commissionRate": 10.0,
            "activityStartTime": "",
            "activityEndTime": "",
            "shopName": "阿里健康海外旗舰店",
            "shopLevel": 18,
            "descScore": 4.9,
            "dsrScore": 4.90,
            "dsrPercent": 17.13,
            "shipScore": 4.80,
            "shipPercent": 0.58,
            "serviceScore": 4.90,
            "servicePercent": 17.48,
            "brandId": 0,
            "brand": 0,
            "brandName": "",
            "hotPush": 3680,
            "teamName": "斯迈尔星球",
            "quanMLink": 0,
            "hzQuanOver": 0,
            "yunfeixian": 1,
            "estimateAmount": 0,
            "tchaoshi": 0,
            "goldSellers": 0,
            "freeshipRemoteDistrict": 0
        },
        {
            "id": "30124016",
            "goodsId": "567171331099",
            "title": "林家铺子黄桃椰果罐头200g*4罐水果罐头左右双色",
            "dtitle": "【林家铺子】双色水果罐头",
            "subdivisionName": "罐头",
            "subdivisionRank": 1,
            "originalPrice": 14.90,
            "actualPrice": 9.90,
            "shopTyp": 1,
            "monthSales": 66058,
            "twoHoursSales": 34211,
            "dailySales": 65791,
            "commissionType": 3,
            "desc": "双十一秒杀价4罐只需9.9,新鲜生产25年良心企业,选用新鲜的大连黄桃和东南亚椰果,自然发酵极速所鲜,低卡美味",
            "specialText": [],
            "couponReceiveNum": 39000,
            "couponLink": "https://uland.taobao.com/quan/detail?sellerId=2758433361&activityId=1bf27c0a4183445c9bad1dd6a8f5b843",
            "couponEndTime": "2020-11-05 23:59:59",
            "couponStartTime": "2020-11-03 00:00:00",
            "couponPrice": 5.00,
            "couponConditions": "10",
            "activityType": 1,
            "createTime": "2020-11-02 15:45:12",
            "mainPic": "//img.alicdn.com/imgextra/i4/2758433361/O1CN01GA9mIc1ahNoHerEaO_!!2758433361-0-lubanu-s.jpg",
            "marketingMainPic": "https://sr.ffquan.cn/dtk_user_fd/20201102/bufrgrsq57boivnrr8og0.jpg",
            "video": "",
            "sellerId": "2758433361",
            "cid": 6,
            "tbcid": "50009898",
            "discounts": 0.34,
            "commissionRate": 30.00,
            "activityStartTime": "",
            "activityEndTime": "",
            "shopName": "林家铺子食品旗舰店",
            "shopLevel": 17,
            "descScore": 4.8,
            "dsrScore": 4.80,
            "dsrPercent": 23.20,
            "shipScore": 4.80,
            "shipPercent": 22.49,
            "serviceScore": 4.80,
            "servicePercent": 25.82,
            "brandId": 1,
            "brand": 1,
            "brandName": "林家铺子",
            "hotPush": 12870,
            "teamName": "杨浩杰联盟--李豪",
            "quanMLink": 0,
            "hzQuanOver": 0,
            "yunfeixian": 0,
            "estimateAmount": 0,
            "tchaoshi": 0,
            "goldSellers": 0,
            "freeshipRemoteDistrict": 0
        },
        {
            "id": "30071314",
            "goodsId": "562713116225",
            "title": "凤祥炸鸡家庭桶4袋装香辣翅根黄金鸡块鸡米花炸鸡半成品快手菜",
            "dtitle": "【全家桶】凤祥炸鸡4斤翅根鸡块",
            "subdivisionName": "",
            "subdivisionRank": 0,
            "originalPrice": 89.90,
            "actualPrice": 54.90,
            "shopTyp": 1,
            "monthSales": 42287,
            "twoHoursSales": 22517,
            "dailySales": 25176,
            "commissionType": 3,
            "desc": "【第二件9.9元】专注鸡肉28年,专治懒和馋,在家吃更安心,是妈妈的小助手,是孩子的美味。亲手炸给孩子吃,是有回忆的美好味道,约4斤,你爱吃的我都有,有家有爱,有美食相伴。赠运费险。",
            "specialText": [
                "第二件9.9元"
            ],
            "couponReceiveNum": 10000,
            "couponLink": "https://uland.taobao.com/quan/detail?sellerId=3408811645&activityId=22a58c2e4413434e92d9c6f904dabc3c",
            "couponEndTime": "2020-11-07 23:59:59",
            "couponStartTime": "2020-11-01 00:00:00",
            "couponPrice": 35.00,
            "couponConditions": "75",
            "activityType": 3,
            "createTime": "2020-10-31 09:17:58",
            "mainPic": "https://img.alicdn.com/imgextra/i3/57260266/O1CN01K4Keio1DpryjmO02m_!!57260266.jpg",
            "marketingMainPic": "https://sr.ffquan.cn/dtk_user_fd/20200508/bqqbd1aulrg9tojlrr000.png",
            "video": "https://cloud.video.taobao.com/play/u/3408811645/p/2/e/6/t/1/232420390178.mp4?appKey=38829",
            "sellerId": "3408811645",
            "cid": 6,
            "tbcid": "50016814",
            "discounts": 0.39,
            "commissionRate": 20.00,
            "activityStartTime": "2020-11-01 00:00:00",
            "activityEndTime": "2020-11-03 23:59:59",
            "shopName": "凤祥食品旗舰店",
            "shopLevel": 14,
            "descScore": 4.8,
            "dsrScore": 4.80,
            "dsrPercent": 24.04,
            "shipScore": 4.90,
            "shipPercent": 41.90,
            "serviceScore": 4.90,
            "servicePercent": 42.68,
            "brandId": 0,
            "brand": 0,
            "brandName": "凤祥食品",
            "hotPush": 5770,
            "teamName": "三里人家联盟",
            "quanMLink": 0,
            "hzQuanOver": 0,
            "yunfeixian": 0,
            "estimateAmount": 0,
            "tchaoshi": 0,
            "goldSellers": 0,
            "freeshipRemoteDistrict": 0
        },
        {
            "id": "30075489",
            "goodsId": "606631447652",
            "title": "【超定制】豆本豆唯甄豆奶定制款250ml*24盒无添加健康礼盒",
            "dtitle": "拍2件!豆本豆唯甄豆奶定制款48盒",
            "subdivisionName": "牛奶",
            "subdivisionRank": 1,
            "originalPrice": 69.90,
            "actualPrice": 64.90,
            "shopTyp": 1,
            "monthSales": 247787,
            "twoHoursSales": 6120,
            "dailySales": 22648,
            "commissionType": 3,
            "desc": "神!价【拍3件5折+1件返卡4元,叠加199-30,3件仅需57.85】大牌豆本豆件4.9超高评分!不添加防腐剂,安全又好喝,口感浓醇,营养加分,营养美味好吸收,大人小孩都爱喝!猫超次日达",
            "specialText": [
                "第二件0元"
            ],
            "couponReceiveNum": 118500,
            "couponLink": "https://uland.taobao.com/quan/detail?sellerId=725677994&activityId=f568617622b5492d96f5b8c8688025ac",
            "couponEndTime": "2020-11-03 23:59:59",
            "couponStartTime": "2020-11-01 00:00:00",
            "couponPrice": 5.00,
            "couponConditions": "88",
            "activityType": 3,
            "createTime": "2020-10-31 11:36:33",
            "mainPic": "https://img.alicdn.com/imgextra/i2/725677994/O1CN01S1wovB28vIj7MnKMo_!!725677994.png",
            "marketingMainPic": "https://sr.ffquan.cn/dtk_user_fd/20201024/bu9ug8kq57bpekrjs0pg0.jpg",
            "video": "https://cloud.video.taobao.com/play/u/725677994/p/1/e/6/t/1/281331527820.mp4",
            "sellerId": "725677994",
            "cid": 6,
            "tbcid": "50012391",
            "discounts": 0.07,
            "commissionRate": 10.00,
            "activityStartTime": "2020-11-01 00:00:00",
            "activityEndTime": "2020-11-03 23:59:59",
            "shopName": "天猫超市",
            "shopLevel": 20,
            "descScore": 4.9,
            "dsrScore": 4.90,
            "dsrPercent": 39.00,
            "shipScore": 4.90,
            "shipPercent": 31.16,
            "serviceScore": 4.90,
            "servicePercent": 32.61,
            "brandId": 0,
            "brand": 0,
            "brandName": "豆本豆",
            "hotPush": 542,
            "teamName": "品牌萌",
            "quanMLink": 0,
            "hzQuanOver": 0,
            "yunfeixian": 0,
            "estimateAmount": 0,
            "tchaoshi": 1,
            "goldSellers": 0,
            "freeshipRemoteDistrict": 1
        },
        {
            "id": "30121582",
            "goodsId": "628140874306",
            "title": "纤婵夜间酵素糖果蔬台湾复合水果孝素非粉果冻梅饮原液膳食纤维",
            "dtitle": "【纤婵】夜间酵素糖果",
            "subdivisionName": "",
            "subdivisionRank": 0,
            "originalPrice": 69.00,
            "actualPrice": 29.00,
            "shopTyp": 1,
            "monthSales": 25196,
            "twoHoursSales": 16189,
            "dailySales": 22137,
            "commissionType": 3,
            "desc": "【买2送一,送同款】60种植物发酵,多种果蔬纤维,纯植物发酵,夜宵党的挚爱,宅家聚会吃喝怎么都不长胖,0脂肪,无副作用,睡着保持形体!",
            "specialText": [
                "拍二件送一件送同款"
            ],
            "couponReceiveNum": 4000,
            "couponLink": "https://uland.taobao.com/quan/detail?sellerId=2201510571820&activityId=18e1d26b67ab49d5af26987cb165112a",
            "couponEndTime": "2020-11-04 23:59:59",
            "couponStartTime": "2020-11-03 00:00:00",
            "couponPrice": 40.00,
            "couponConditions": "69",
            "activityType": 1,
            "createTime": "2020-11-02 13:19:14",
            "mainPic": "https://img.alicdn.com/imgextra/i4/2201510571820/O1CN01Nc1LYk1PJbSt2Zypx_!!2201510571820.jpg",
            "marketingMainPic": "https://sr.ffquan.cn/dtk_user_fd/20201102/bufo1q2ulrg97uspoq600.png",
            "video": "",
            "sellerId": "2201510571820",
            "cid": 6,
            "tbcid": "125032016",
            "discounts": 0.58,
            "commissionRate": 80.00,
            "activityStartTime": "",
            "activityEndTime": "",
            "shopName": "俏芙蓉旗舰店",
            "shopLevel": 13,
            "descScore": 4.8,
            "dsrScore": 4.80,
            "dsrPercent": 31.34,
            "shipScore": 4.80,
            "shipPercent": 2.22,
            "serviceScore": 4.80,
            "servicePercent": 4.80,
            "brandId": 0,
            "brand": 0,
            "brandName": "",
            "hotPush": 4989,
            "teamName": "海底捞团队",
            "quanMLink": 0,
            "hzQuanOver": 0,
            "yunfeixian": 1,
            "estimateAmount": 0,
            "tchaoshi": 0,
            "goldSellers": 0,
            "freeshipRemoteDistrict": 0
        },
        {
            "id": "30026104",
            "goodsId": "618464077312",
            "title": "超亚小王子医用外科儿童口罩一次性医疗口罩三层白色防护专用透气",
            "dtitle": "成人儿童小王子联名医用外科口罩100只",
            "subdivisionName": "医用外科口罩",
            "subdivisionRank": 1,
            "originalPrice": 52.90,
            "actualPrice": 42.90,
            "shopTyp": 1,
            "monthSales": 114406,
            "twoHoursSales": 389,
            "dailySales": 22064,
            "commissionType": 3,
            "desc": "【可用津贴300-40,券后+津贴+淘金币只要34.5元/100只】小王子联名款外科口罩,械字号,更柔更透气,无菌外科口罩,用的放心,时尚萌宠设计,防护又注重时尚,秒变尚达人~【赠运费险】",
            "specialText": [],
            "couponReceiveNum": 60000,
            "couponLink": "https://uland.taobao.com/quan/detail?sellerId=2884884355&activityId=0c3197f4eea249dfb62a1ef26bdf9ce1",
            "couponEndTime": "2020-11-03 23:59:59",
            "couponStartTime": "2020-11-01 00:00:00",
            "couponPrice": 10.00,
            "couponConditions": "52",
            "activityType": 1,
            "createTime": "2020-10-28 22:18:03",
            "mainPic": "https://img.alicdn.com/imgextra/i4/287761419/O1CN01vctQkE1MLwcsgpcDE_!!287761419.jpg",
            "marketingMainPic": "https://sr.ffquan.cn/dtk_www/20201028/bucnqdaulrgeh0kbdj000.jpg",
            "video": "https://cloud.video.taobao.com/play/u/2884884355/p/2/e/6/t/1/269659272148.mp4?appKey=38829",
            "sellerId": "2884884355",
            "cid": 4,
            "tbcid": "122354006",
            "discounts": 0.19,
            "commissionRate": 25.00,
            "activityStartTime": "",
            "activityEndTime": "",
            "shopName": "超亚医疗器械旗舰店",
            "shopLevel": 17,
            "descScore": 4.9,
            "dsrScore": 4.90,
            "dsrPercent": 4.80,
            "shipScore": 4.80,
            "shipPercent": 1.20,
            "serviceScore": 4.80,
            "servicePercent": 4.80,
            "brandId": 1,
            "brand": 1,
            "brandName": "超亚",
            "hotPush": 327,
            "teamName": "同心工作室",
            "quanMLink": 0,
            "hzQuanOver": 0,
            "yunfeixian": 1,
            "estimateAmount": 0,
            "tchaoshi": 0,
            "goldSellers": 0,
            "freeshipRemoteDistrict": 1
        },
        {
            "id": "30129851",
            "goodsId": "630563965921",
            "title": "夏季室内拖鞋女居家浴室洗澡防滑不臭脚情侣软底静音凉拖鞋男家用",
            "dtitle": "清仓!室内防滑拖鞋居家拖鞋",
            "subdivisionName": "凉拖鞋",
            "subdivisionRank": 1,
            "originalPrice": 3.90,
            "actualPrice": 2.90,
            "shopTyp": 1,
            "monthSales": 75416,
            "twoHoursSales": 20358,
            "dailySales": 21257,
            "commissionType": 3,
            "desc": "安全防滑鞋底,翘挺帮面,足底采用凹凸菱形纹理,按摩脚底缓解疲劳。抗菌不臭脚,无异味。有颜值有内在,舒适源于细节,穿上放松你一天的劳累!",
            "specialText": [],
            "couponReceiveNum": 4000,
            "couponLink": "https://uland.taobao.com/quan/detail?sellerId=3937219703&activityId=dcb772701a7f4a199052b8b17335f583",
            "couponEndTime": "2020-11-04 23:59:59",
            "couponStartTime": "2020-11-03 00:00:00",
            "couponPrice": 1.0,
            "couponConditions": "3",
            "activityType": 1,
            "createTime": "2020-11-02 23:23:30",
            "mainPic": "https://img.alicdn.com/imgextra/i4/2863069160/O1CN01731OPq2HXKb1MO9Kw_!!2863069160.jpg",
            "marketingMainPic": "https://sr.ffquan.cn/dtk_user_fd/20201101/bufcgnkq57bsgt7j9hk00.jpg",
            "video": "",
            "sellerId": "3937219703",
            "cid": 4,
            "tbcid": "50012051",
            "discounts": 0.26,
            "commissionRate": 50.0,
            "activityStartTime": "",
            "activityEndTime": "",
            "shopName": "天天特卖工厂店",
            "shopLevel": 20,
            "descScore": 4.7,
            "dsrScore": 4.70,
            "dsrPercent": -1.60,
            "shipScore": 4.70,
            "shipPercent": -1.52,
            "serviceScore": 4.70,
            "servicePercent": -1.74,
            "brandId": 0,
            "brand": 0,
            "brandName": "",
            "hotPush": 976,
            "teamName": "牛犇-商盟",
            "quanMLink": 0,
            "hzQuanOver": 0,
            "yunfeixian": 1,
            "estimateAmount": 0,
            "tchaoshi": 0,
            "goldSellers": 0,
            "freeshipRemoteDistrict": 0
        },
        {
            "id": "30086298",
            "goodsId": "598088771970",
            "title": "漫花原木纸巾抽纸家用整箱实惠装餐巾纸卫生纸面巾纸抽婴儿擦手纸",
            "dtitle": "6.91秒杀12包抽纸备注可选",
            "subdivisionName": "抽纸",
            "subdivisionRank": 1,
            "originalPrice": 8.91,
            "actualPrice": 6.91,
            "shopTyp": 1,
            "monthSales": 801765,
            "twoHoursSales": 11562,
            "dailySales": 20466,
            "commissionType": 3,
            "desc": "限时6.91秒杀【12包备注可选,无备注默认发10包,备注A12发12包压花抽纸】漫花原生木浆抽纸。无荧光剂,柔韧吸水不易破,擦拭无尘屑,亲肤不刺激,手慢无~",
            "specialText": [
                "限时6.91秒杀"
            ],
            "couponReceiveNum": 122670,
            "couponLink": "https://uland.taobao.com/quan/detail?sellerId=2930255252&activityId=eb216b46f7934b1fa1656b76bd64ef6c",
            "couponEndTime": "2020-11-03 23:59:59",
            "couponStartTime": "2020-11-01 00:00:00",
            "couponPrice": 2.00,
            "couponConditions": "8",
            "activityType": 1,
            "createTime": "2020-10-31 17:25:31",
            "mainPic": "https://img.alicdn.com/imgextra/i3/2930255252/O1CN0159ouF21ofSiQ3kPq2_!!2930255252.jpg",
            "marketingMainPic": "https://sr.ffquan.cn/dtk_user_fd/20200707/bs1srgsq57bq9ckctti00.jpg",
            "video": "https://cloud.video.taobao.com/play/u/2930255252/p/2/e/6/t/1/260064522877.mp4?appKey=9999",
            "sellerId": "2930255252",
            "cid": 4,
            "tbcid": "50012478",
            "discounts": 0.22,
            "commissionRate": 30.01,
            "activityStartTime": "",
            "activityEndTime": "",
            "shopName": "漫花旗舰店",
            "shopLevel": 20,
            "descScore": 4.8,
            "dsrScore": 4.80,
            "dsrPercent": -0.87,
            "shipScore": 4.80,
            "shipPercent": -1.02,
            "serviceScore": 4.80,
            "servicePercent": -1.02,
            "brandId": 1,
            "brand": 1,
            "brandName": "漫花",
            "hotPush": 2150,
            "teamName": "梦想dream团队",
            "quanMLink": 0,
            "hzQuanOver": 0,
            "yunfeixian": 0,
            "estimateAmount": 0,
            "tchaoshi": 0,
            "goldSellers": 0,
            "freeshipRemoteDistrict": 0
        },
        {
            "id": "30125605",
            "goodsId": "520788406866",
            "title": "哈尔斯保温杯水杯男女学生个性创意潮流杯子便携简约大容量儿童杯",
            "dtitle": "哈尔斯旗舰店 男女不锈钢保温杯500ml",
            "subdivisionName": "保温杯",
            "subdivisionRank": 1,
            "originalPrice": 34.20,
            "actualPrice": 19.20,
            "shopTyp": 1,
            "monthSales": 30587,
            "twoHoursSales": 7462,
            "dailySales": 18102,
            "commissionType": 3,
            "desc": "【官方旗舰店】难得的超级折扣~经典子弹头网红款,沃尔玛售价99元!一键按压开关,便携提绳,24H开水还很烫呢!",
            "specialText": [
                "送清洗套装"
            ],
            "couponReceiveNum": 67000,
            "couponLink": "https://uland.taobao.com/quan/detail?sellerId=831007526&activityId=6025a274df8d450189f1446d41f47e1e",
            "couponEndTime": "2020-11-03 23:59:59",
            "couponStartTime": "2020-11-03 00:00:00",
            "couponPrice": 15.0,
            "couponConditions": "34",
            "activityType": 3,
            "createTime": "2020-11-02 17:43:04",
            "mainPic": "https://img.alicdn.com/imgextra/i3/115081058/O1CN01wwWvN61JgbfUjbzXb_!!115081058.jpg",
            "marketingMainPic": "https://sr.ffquan.cn/dtk_user_fd/20201102/buft5oaulrg97uspu9k00.jpg",
            "video": "https://cloud.video.taobao.com/play/u/831007526/p/2/e/6/t/1/50206380852.mp4?appKey=38829",
            "sellerId": "831007526",
            "cid": 4,
            "tbcid": "50006889",
            "discounts": 0.44,
            "commissionRate": 20.01,
            "activityStartTime": "2020-11-01 00:00:00",
            "activityEndTime": "2020-11-03 23:59:59",
            "shopName": "哈尔斯官方旗舰店",
            "shopLevel": 17,
            "descScore": 4.8,
            "dsrScore": 4.80,
            "dsrPercent": 8.24,
            "shipScore": 4.80,
            "shipPercent": 12.65,
            "serviceScore": 4.80,
            "servicePercent": 11.91,
            "brandId": 1,
            "brand": 1,
            "brandName": "哈尔斯",
            "hotPush": 15883,
            "teamName": "天河联盟",
            "quanMLink": 0,
            "hzQuanOver": 0,
            "yunfeixian": 1,
            "estimateAmount": 0,
            "tchaoshi": 0,
            "goldSellers": 0,
            "freeshipRemoteDistrict": 0
        },
        {
            "id": "30122154",
            "goodsId": "626901278251",
            "title": "得力按动中性笔ins冷淡风0.5mm学生用乐素简约女潮日系黑色自动弹簧摁按压式碳素水性子弹头高颜值文艺小清新",
            "dtitle": "【得力】按动笔1支+20支笔芯",
            "subdivisionName": "中性笔",
            "subdivisionRank": 1,
            "originalPrice": 4.90,
            "actualPrice": 1.90,
            "shopTyp": 1,
            "monthSales": 19643,
            "twoHoursSales": 9477,
            "dailySales": 17000,
            "commissionType": 3,
            "desc": "大牌得力按动笔套餐,实发1支按动中性笔+20支按动笔芯,这么一大推才1.9元,学生、办公党速度抢!!",
            "specialText": [],
            "couponReceiveNum": 6500,
            "couponLink": "https://uland.taobao.com/quan/detail?sellerId=2233164752&activityId=2712bd65301b45f9abe562b35d56a7b2",
            "couponEndTime": "2020-11-05 23:59:59",
            "couponStartTime": "2020-11-03 00:00:00",
            "couponPrice": 3.00,
            "couponConditions": "4",
            "activityType": 1,
            "createTime": "2020-11-02 14:05:24",
            "mainPic": "https://img.alicdn.com/imgextra/i1/743142292/O1CN01WAfnx51SnmPjrGZay_!!743142292.jpg",
            "marketingMainPic": "https://sr.ffquan.cn/dtk_user_fd/20201102/bufq2t2ulrg97uspqqcg0.jpg",
常见错误码:
[{"id":1,"code":"-1","desc":"服务器错误","faq":"稍后尝试访问","pid":-1},{"id":1,"code":"1","desc":"参数错误","faq":"请根据msg提示信息进行修改","pid":-1}]
错误码列表: