Kuaishou Product Details API Product Sales API Product List API Get Product Price Data API

item_get-Get product details according to ID 

ks.item_get test entry

public parameters

name type must describe
key String yes Call key (must be spliced ​​in the URL in GET mode)
secret String yes call key
api_name String yes API interface name (included in the request address) [item_search, item_get, item_search_shop, etc.]
cache String no [yes, no] The default is yes, the cached data will be called, and the speed is relatively fast
result_type String no [json,jsonu,xml,serialize,var_export] returns the data format, the default is json, and the content output by jsonu can be read directly in Chinese
lang String no [cn,en,ru] translation language, default cn Simplified Chinese
version String no API version

request parameters

Request parameter: num_iid=79356974

Parameter description: num_iid: product ID; if delist_time is not empty, it means that the product has been removed from the shelves; the data will get abnormal.

response parameters

Version: Date:2023-05-29

name type must example value describe

item

item[] 1 Product Details Data

num_id

Bigint 1 20046611202546 Product ID

title

String 1 Heavy 200g men's casual all-match [lucky cat] cotton short-sleeved T-shirt baby title

desc_short

String 0 Product Description

price

Float 1 11.93 price

total_price

Float 0

orginal_price

String 0 11.93 original price

suggestive_price

Float 0

nick

String 1 Daren Lili teaches collocation Shopkeeper Nickname

num

Int 0 0 in stock

my_num

Int 0 0 minimum purchase quantity

detail_url

String 0 https://app.kwaixiaodian.com/page/kwaishop-goods-detail-h5-vue/detail?id=20046611202546 baby link

pic_url

String 1 https://u2-203.ecukwai.com/bs2/image-kwaishop-product/ITEM_IMAGE-407236546-515f399e73df4f228b0171dff65cef9a.jpg baby pictures

brand

String 0 other brand name

brandId

Int 0 Brand ID

rootCatId

Int 0 Top Category ID

cid

Int 0 0

crumbs

Mix 0 [] Navigation menu

desc

String 0 https://u2-203.ecukwai.com/bs2/image-kwaishop-product/ITEM_DETAIL_IMAGE-407236546-2fd76963ba6e41b4bb52982191a97daf.jpg product details

desc_img

Mix 0 [] Product detail image

item_imgs

Mix 0 item_imgs[] product picture

props_name

String 0 commodity attribute name

prop_imgs

prop_imgs[] 0 Product attribute image list

property_alias

String 0 Sales attribute value alias

props

Mix 0 [{name: "Brand",value: "Other/other"}] Commodity attributes

skus

skus[] 0 List of commodity specification information

seller_id

Int 0 407236546 seller ID

shop_id

Int 0 407236546 Store ID

seller_info

seller_info[] 0 seller info Array

Request example (support curl/PHP, Python, c#, c++, Java, JavaScript, etc.) 

Python request code

# 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-服务器.cn/ks/item_get/?key=t8349951023&secret=20230904&num_iid=79356974"
headers = {
    "Accept-Encoding": "gzip",
    "Connection": "close"
}
if __name__ == "__main__":
    r = requests.get(url, headers=headers)
    json_obj = r.json()
    print(json_obj)

Response example (json)


        "item": {
            "num_iid": "20046611202546",
            "title": "重磅200克男款休闲百搭【招财猫】纯棉短袖T恤",
            "desc_short": "",
            "price": 19.9,
            "total_price": 0,
            "suggestive_price": 0,
            "orginal_price": 0,
            "nick": "达人丽丽教搭配",
            "num": 0,
            "min_num": 0,
            "detail_url": "https://app.kwaixiaodian.com/page/kwaishop-goods-detail-h5-vue/detail?id=20046611202546",
            "pic_url": "https://u2-203.ecukwai.com/bs2/image-kwaishop-product/ITEM_IMAGE-407236546-515f399e73df4f228b0171dff65cef9a.jpg",
            "brand": "其他/other",
            "brandId": null,
            "rootCatId": 0,
            "cid": 0,
            "crumbs": [],
            "created_time": "",
            "modified_time": "",
            "delist_time": "",
            "desc": [
                "https://u2-203.ecukwai.com/bs2/image-kwaishop-product/ITEM_DETAIL_IMAGE-407236546-2fd76963ba6e41b4bb52982191a97daf.jpg",
                "https://u2-203.ecukwai.com/bs2/image-kwaishop-product/ITEM_DETAIL_IMAGE-407236546-56e029ac29624b3bb984bc11730bfe12.jpg",
            ],
            "desc_img": [],
            "item_imgs": [
                {
                    "url": "https://u1-203.ecukwai.com/bs2/image-kwaishop-product/ITEM_IMAGE-407236546-515f399e73df4f228b0171dff65cef9a.jpg"
                },
                {
                    "url": "https://u1-203.ecukwai.com/bs2/image-kwaishop-product/ITEM_IMAGE-407236546-68b7ad1802a9475e929adad9efe06bf2.jpg"
                }
            ],
            "item_weight": "",
            "item_size": "",
            "location": "",
            "post_fee": "",
            "express_fee": "",
            "ems_fee": "",
            "shipping_to": "",
            "has_discount": "",
            "video": [],
            "is_virtual": "",
            "sample_id": "",
            "is_promotion": "",
            "props_name": null,
            "prop_imgs": {
                "prop_img": []
            },
            "property_alias": "",
            "props": [
                {
                    "name": "品牌",
                    "value": "其他/other"
                },
                {
                    "name": "主材质",
                    "value": "棉"
                }
            ],
            "total_sold": "",
            "skus": {
                "sku": [
                    {
                        "price": 19.9,
                        "total_price": 0,
                        "orginal_price": 0,
                        "properties": "20601742184:20601742196",
                        "properties_name": "20601742184:20601742196:白色:4XL 170-185斤;",
                        "quantity": 679,
                        "sku_id": 70581398202546
                    },
                    {
                        "price": 19.9,
                        "total_price": 0,
                        "orginal_price": 0,
                        "properties": "20601742184:20601742197",
                        "properties_name": "20601742184:20601742197:白色:5XL 185-200斤;",
                        "quantity": 685,
                        "sku_id": 70581398203546
                    }
                ]
            },
            "seller_id": 407236546,
            "sales": "311",
            "shop_id": 407236546,
            "props_list": [],
            "seller_info": {
                "nick": "达人丽丽教搭配",
                "shop_type": null,
                "user_num_id": 407236546,
                "sid": 407236546,
                "title": "达人丽丽教搭配",
                "zhuy": "https://app.kwaixiaodian.com/page/kwaishop-c-shoplist?layoutType=4&enableWK=1&id=407236546",
                "shop_name": "达人丽丽教搭配"
            },
            "tmall": "false",
            "warning": "",
            "url_log": [],
            "shop_name": "达人丽丽教搭配",
            "_ddf": "jf",
            "props_img": [],
            "format_check": "fail"
        },
        "error": "",
        "translate_status": "",
        "translate_time": 0,
        "language": {
            "default_lang": "cn",
            "current_lang": "cn"
        },
        "reason": "",
        "error_code": "0000",
        "cache": 0,
        "api_info": "today:5 max:30000 all[7=5+0+2];expires:2024-05-20",
        "execution_time": "0.579",
        "server_time": "Beijing/2023-05-29 11:21:26",
        "client_ip": "106.6.37.94",
        "call_args": {
            "num_iid": "20046611202546"
        },

exception example

{
            "error": "item-not-found",
            "reason": "商品没找到",
            "error_code": "2000",
            "success": 0,
            "cache": 0,
            "api_info": "today:0 max:10000",
            "execution_time": 0.081,
            "server_time": "Beijing/2020-06-10 23:44:00",
            "call_args": [],
            "api_type": "ks",
            "request_id": "20046611202546"}
    }

Guess you like

Origin blog.csdn.net/Jernnifer_mao/article/details/132692893