接口使用场景等说明:查询多多进宝主题下的商品接口
环境 | http 地址 | https 地址 |
---|---|---|
正式环境 | http://api.veapi.cn/pdd/pdd_themegoods | 暂无 |
参数名称 | 参数类型 | 必填 | 示例值 | 描述 |
---|---|---|---|---|
vekey | String | 是 | V123M56 | 公共参数,接口秘钥,请在会员中心获取 |
theme_id | Long | 是 | 主题ID |
GET/POST http://api.veapi.cn/pdd/pdd_themegoods?vekey=xxx&theme_id=7605
$api="http://api.veapi.cn/pdd/pdd_themegoods?vekey=xxx&theme_id=7605"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $api); //curl_setopt($ch, CURLOPT_POST, true); //POST方式时启用 //curl_setopt($ch, CURLOPT_POSTFIELDS, $postData ); //POST方式时传参 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); //如果使用https请启用 curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); //如果使用https请启用 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true ); //返回数据流,不直接输出 curl_setopt($ch, CURLOPT_ENCODING, 'gzip'); //使用gzip压缩传输让访问更快 curl_setopt($ch, CURLOPT_TIMEOUT, 6); //允许执行的最长秒数。这里设定6S curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); $result = curl_exec($ch); $info = curl_getinfo($ch); curl_close($ch); echo $result; //返回值
import cn.hutool.http.HttpResponse; import cn.hutool.http.HttpRequest; public class testGetParam { public static void main(String[] args) { // API网址 String url = "http://api.veapi.cn/pdd/pdd_themegoods?vekey=xxx&theme_id=7605"; // JDK 8u111版本后,若目标页面为HTTPS协议,请启用proxy用户密码鉴权 //System.setProperty("jdk.http.auth.tunneling.disabledSchemes", ""); // 发送请求 String result = HttpRequest.get(url) .timeout(10000)//设置超时,毫秒 .execute().body(); System.out.println(result); } }
import requests # 要访问的API网页 target_url = "http://api.veapi.cn/pdd/pdd_themegoods?vekey=xxx&theme_id=7605" # 发送请求 response = requests.get(target_url) # 获取页面内容 if response.status_code == 200: print response.text
参数名称 | 参数类型 | 示例值 | 描述 |
---|---|---|---|
cat_ids | Integer[] | 商品一~四级类目ID列表 | |
coupon_discount | Long | 优惠券面额,单位为分 | |
coupon_end_time | Long | 优惠券失效时间,UNIX时间戳 | |
coupon_min_order_amount | Long | 优惠券门槛价格,单位为分 | |
coupon_remain_quantity | Long | 优惠券剩余数量 | |
coupon_start_time | Long | 优惠券生效时间,UNIX时间戳 | |
coupon_total_quantity | Long | 优惠券总数量 | |
desc_txt | String | 描述分 | |
goods_desc | String | 商品描述 | |
goods_gallery_urls | String[] | 商品详情图列表 | |
goods_id | Long | 商品编码 | |
goods_image_url | String | 商品主图 | |
goods_name | String | 商品名称 | |
goods_thumbnail_url | String | 商品缩略图 | |
has_coupon | Boolean | 商品是否带券,true-带券,false-不带券 | |
lgst_txt | String | 物流分 | |
mall_name | String | 店铺名称 | |
min_group_price | Long | 最小拼团价格,单位为分 | |
min_normal_price | Long | 最小单买价格,单位为分 | |
opt_id | Long | 商品标签类目ID,使用pdd.goods.opt.get获取 | |
opt_name | String | 商品标签名 | |
promotion_rate | Long | 佣金比例,千分比 | |
sales_tip | String | 已售卖件数 | |
serv_txt | String | 服务分 | |
total | Long | 返回商品总数 |
{ "error": "0", "msg": "主题商品查询成功", "total": "19", "data": [ { "lgst_txt": "高", "goods_name": "加绒不加绒黑色打底裤女外穿秋冬新款加厚长裤子冬季大码保暖棉裤", "sales_tip": "10万+", "coupon_remain_quantity": "0", "goods_id": "5945826827", "desc_txt": "高", "promotion_rate": "135", "goods_desc": "加绒不加绒黑色打底裤女外穿秋冬新款加厚长裤子冬季大码保暖棉裤", "opt_name": "女装", "goods_thumbnail_url": "https://img.pddpic.com/gaudit-image/2022-12-04/6c12852d0ca4033dd6e0c136acf0712f.jpeg", "opt_id": "13616", "cat_ids": [ 8439, 8447, 8472 ], "coupon_min_order_amount": "0", "goods_image_url": "https://img.pddpic.com/mms-material-img/2022-12-04/0e253b22-fe8c-41f7-bd6f-d0b733d96a31.jpeg", "has_coupon": false, "min_normal_price": "1990", "serv_txt": "高", "mall_name": "锦熹服饰", "coupon_total_quantity": "0", "coupon_start_time": "0", "min_group_price": "1490", "coupon_discount": "0", "coupon_end_time": "0" } ], "request_id": "Fglhkfx" }