小小API是一个稳定 快速 的 API 接口服务 点击加入QQ群
var axios = require('axios')
var config = {
method: 'get',
url: 'https://v2.xxapi.cn/api/cigaretteDetails?name=中华'
}
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data))
})
.catch(function (error) {
console.log(error)
})
{
"appearance_score": 6, // 外观评分(满分10分)
"carton_code": "6901028107310", // 条盒条码
"carton_price": 450, // 整条零售价(元)
"cigarette_code": "", // 卷烟条码
"co_content": 9, // 一氧化碳含量(毫克)
"filter_length": 25, // 过滤嘴长度(毫米)
"id": 1903, // 唯一标识符
"length": 88, // 烟支长度(毫米)
"main_color": "", // 包装主色调
"name": "钻石(荷花经典中支)", // 香烟名称
"nicotine_content": 0.9, // 烟碱含量(毫克)
"overall_score": 6.4, // 综合评分(满分10分)
"package_type": "条盒硬盒中支", // 包装类型
"pieces_per_pack": 20, // 每包支数
"product_status": "已上市", // 产品状态
"purchase_desire_score": 6.6, // 购买欲评分(满分10分)
"sales_channel": "国产内销", // 销售渠道
"satisfaction_score": 6.2, // 美誉度评分(满分10分)
"secondary_color": "", // 包装副色调
"single_price": 45, // 单包零售价(元)
"tar_content": 9, // 焦油含量(毫克)
"taste_score": 6.9, // 口感评分(满分10分)
"type": "烤烟型", // 香烟类型
"wholesale_price": 0 // 批发价(元),0表示未知或未统计
}