API文档中心

热门接口:产品ID找同款全量维权查询万能转链字符串ID转换 (有API需求可联系本站)

获取商品基本信息接口

调用权限:核心接口会员卡调用
接口使用场景等说明:

获取商品基本信息接口,包括:商品名称,主图,最低单购价,最低拼团价和商品数字ID。支持批量查询。

接口请求地址

环境 http 地址 https 地址
正式环境 http://api.veapi.cn/pdd/pdd_itembaseinfo 暂无

请求方式:GETPOST

请求参数

参数名称 参数类型 必填 示例值 描述
vekey String V123M56 公共参数,接口秘钥,请在会员中心获取
goods_id_list Long[]   商品id列表,支持批量,用逗号分隔。
goods_sign_list String[]   商品goodsSign列表,支持通过goodsSign查询商品。支持批量。goods_id_list和goods_sign_list不能同时为空。

请求示例

  • HTTP
  • PHP
  • JAVA
  • PYTHON
GET/POST  http://api.veapi.cn/pdd/pdd_itembaseinfo?vekey=xxx&goods_id_list=440382766758,423051062050 
【例子】使用goods_sign查询
http://api.veapi.cn/pdd/pdd_itembaseinfo?vekey=xxx&goods_sign_list=E9H26YptkExEb5jlwfnb3D6TL_PIjzR3_JQiF3JSUU7,E972wBWAFbZEb5jhwfjb3QqJsGisvF_wzQ_JnfRXlWl4
使用curl函数,curl不是php原生库,需要安装才能使用

$api="http://api.veapi.cn/pdd/pdd_itembaseinfo?vekey=xxx&goods_id_list=440382766758,423051062050";

$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; //返回值
使用okhttp3/httpclient/jsoup/hutool,以hutool为例:

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_itembaseinfo?vekey=xxx&goods_id_list=440382766758,423051062050";
        // JDK 8u111版本后,若目标页面为HTTPS协议,请启用proxy用户密码鉴权
        //System.setProperty("jdk.http.auth.tunneling.disabledSchemes", "");

        // 发送请求
        String result = HttpRequest.get(url)
                .timeout(10000)//设置超时,毫秒
                .execute().body();
        System.out.println(result);
    }
}
推荐使用 requests,支持访问http,https网页:

import requests
		
# 要访问的API网页
target_url = "http://api.veapi.cn/pdd/pdd_itembaseinfo?vekey=xxx&goods_id_list=440382766758,423051062050"

# 发送请求
response = requests.get(target_url)

# 获取页面内容
if response.status_code == 200:
	print response.text

返回值(JSON)

参数名称 参数类型 示例值 描述
goods_id Long 423051062050 商品id
goods_name String 简易鞋架门口家用 商品标题
goods_pic String   商品缩略图
min_group_price Long 1990 最小成团价格,单位分
min_normal_price Long 2300 最小单买价格,单位分

返回示例

【提示】推广链接通常有时效性,示例中的链接为创建文档时生成,仅用于展示返回结果使用,有可能已失效。
{ "error": "0", "msg": "商品基本信息查询成功", "data": [ { "goods_name": "加绒加厚裤子女2022秋冬新款束脚运动裤韩版宽松刺绣R标哈伦卫裤【5天内发货】", "goods_pic": "https://img.pddpic.com/gaudit-image/2022-12-15/fe624b8582bbaaab0bb0f150bc42fd27.jpeg", "min_normal_price": "4990", "goods_id": "440382766758", "min_group_price": "3590" }, { "goods_name": "简易鞋架门口家用5层小型办公室宿舍鞋柜结实耐用多层防尘鞋架子", "goods_pic": "https://img.pddpic.com/gaudit-image/2022-10-15/e489d419228eeb03134bee363933858f.jpeg", "min_normal_price": "2300", "goods_id": "423051062050", "min_group_price": "1990" } ], "request_id": "R8hzZRe" }

错误码

如果error不为0时,请点此查看错误码表格

在线
客服

会员请加QQ群交流:

微信
咨询

加微信咨询
顶部