【震坤行 zhenkunhang】根据 ID 取商品详情 API 返回值说明

zhenkunhang.item_get

公共参数

名称 类型 必须 描述
key String 调用key(必须以GET方式拼接在URL中)
secret String 调用密钥
api_name String API接口名称(包括在请求地址中)[item_search,item_get,item_search_shop等]
cache String [yes,no]默认yes,将调用缓存的数据,速度比较快
result_type String [json,jsonu,xml,serialize,var_export]返回数据格式,默认为json,jsonu输出的内容中文可以直接阅读
lang String [cn,en,ru]翻译语言,默认cn简体中文
version String API版本

请求参数

请求参数:num_iid=AH0990

参数说明:num_iid:商品ID

请求示例Curl PHP PHPsdk JAVA C# Python

# coding:utf-8
"""
Compatible for python2.x and python3.x
requirement: pip install requests
"""
from __future__ import print_function
import requests
# 请求示例 url 默认请求参数已经做URL编码
url = "https://api-gw.onebound.cn/zhenkunhang/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=AH0990"
headers = {
    "Accept-Encoding": "gzip",
    "Connection": "close"
}
if __name__ == "__main__":
    r = requests.get(url, headers=headers)
    json_obj = r.json()
    print(json_obj)

响应示例

{
    "item": {
        "detail_url": "https://www.zkh.com/item/AH0990.html?",
        "crumbs": "",
        "title": "AMMEX/爱马斯 一次性深蓝色丁腈手套 APFNCHD44100 M 无粉麻面 1盒",
        "desc_short": "",
        "model": "APFNCHD44100",
        "starting_batch": "1",
        "minimum_packaging": "1",
        "brandId": "",
        "specifications": "100只/盒 10盒/箱",
        "cid": "-1",
        "feature": "",
        "pic_url": "https://private.zkh.com/PRODUCT/BIG/BIG_AH0990_01.jpg?x-oss-process=style/common_style_600&timestamp=1673462318000",
        "item_imgs": {
            "url": "https://private.zkh.com/PRODUCT/BIG/BIG_AH0990_01.jpg?x-oss-process=style/common_style_600&timestamp=1673462318000"
        },
        "nick": "",
        "num": 200,
        "num_iid": "AH0990",
        "price": "40.90",
        "orginal_price": "36.19",
        "desc": "
", "props_list": [], "seller_info": { "item_score": "", "shop_name": "AMMEX/爱马斯", "title": "AMMEX/爱马斯", "shop_id": 197570, "zhuy": "https://www.zkh.com/list/b-197570.html", "company_name": "" }, "props": [ { "name": "箱规", "value": "100只/盒 10盒/箱" }, { "name": "尺码", "value": "M" }, { "name": "颜色", "value": "深蓝色" } ], "desc_img": [ "https://private.zkh.com/PRODUCT/BIG/BIG_AH0990_01.jpg?x-oss-process=style/common_style_600×tamp=1673462318000", "https://private.zkh.com/PRODUCT/BIG/BIG_AH0990_02.jpg?x-oss-process=style/common_style_600×tamp=1673462318000", "https://private.zkh.com/PRODUCT/BIG/BIG_AH0990_03.jpg?x-oss-process=style/common_style_600×tamp=1673462318000", "https://private.zkh.com/PRODUCT/BIG/BIG_AH0990_04.jpg?x-oss-process=style/common_style_600×tamp=1673462318000", "https://private.zkh.com/PRODUCT/BIG/BIG_AH0990_05.jpg?x-oss-process=style/common_style_600×tamp=1673462318000" ], "props_img": [], "format_check": "ok", "sales": 0, "shop_item": [], "relate_items": [] }, "error": "", "secache": "72883b891667bd3a5db39accaabaa32e", "secache_time": 1685083397, "secache_date": "2023-05-26 14:43:17", "translate_status": "", "translate_time": 0, "language": { "default_lang": "cn", "current_lang": "cn" }, "reason": "", "error_code": "0000", "cache": 0, "api_info": "today:37 max:10100 all[98=37+28+33];expires:2030-12-31", "execution_time": "2.05", "server_time": "Beijing/2023-05-26 14:43:17", "client_ip": "106.6.38.178", "call_args": { "num_iid": "AH0990" }, "api_type": "zhenkunhang", "translate_language": "zh-CN", "translate_engine": "baidu", "server_memory": "3.08MB", "request_id": "gw-3.64705503a711f", "last_id": "1764784088" }

 

 

你可能感兴趣的:(servlet,开发语言,API接口接入,商品详情API接口)