API接口文档/2.4 商品服务/2.4.6 商品价格查询
在线测试
2.4.6 商品价格查询

根据商品SKU编码查询商品价格信息

请求方式/参数格式
POST/JSON
请求URL
https://域名/prices
请求入参说明
参数名称 必填 类型 长度 示例值
token String 100 授权接口获取的access token
skus String 500 商品编号,支持批量查询,以英文逗号","分隔
返回结果
名称 类型 必填 备注
success boolean true|false,根据该字段判断接口是否调用成功,若为false,则解析error_response字段查看具体失败原因
result Array 数组对象,数据节点
 └sku String 商品编号
 └mall_price number 平台价/商品商城售价
 └price number 合约商品含税价格
 └naked_price number 合约商品未含税价格
 └tax_rate number 合约商品税率
错误码
错误码 错误描述 解决方案
ERR-001101 SKU不能为空
ERR-001102 SKU应为字符串
请求示例
{
  "token": "3fd5f04b-9f4c-4be0-8ea2-31f912314181",
  "skus": "40276081,40276083"
}
			
返回示例
{
    "success": true,
    "result": [
        {
            "sku": "40276081",
            "price": 31.0,
            "mall_price": 31.0,
            "naked_price": 27.43,
            "tax_rate": 0.13
        },
        {
            "sku": "40276083",
            "price": 25.88,
            "mall_price": 25.88,
            "naked_price": 22.9,
            "tax_rate": 0.13
        }
    ]
}