赞
踩
小红书店铺的所有商品API接口(整店商品详情查询接口)代码对接如下:
1.公共参数
名称 | 类型 | 必须 | 描述 |
---|---|---|---|
key | String | 是 | 调用key(必须以GET方式拼接在URL中,点击获取请求key和secret ) |
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版本 |
2.请求参数
请求参数:sid=5ef8696821adbc000127fad1&page=&sort=&
参数说明: sid:sellerid page:页码
sort: 新品:new_arrival 综合:default 销量:sale 种草:fav_count 价格降序:bid 价格升序:_bid
3.响应参数
4.请求示例(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://wx19970108018/smallredbook/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&sid=5ef8696821adbc000127fad1&page=&sort=&"
- headers = {
- "Accept-Encoding": "gzip",
- "Connection": "close"
- }
- if __name__ == "__main__":
- r = requests.get(url, headers=headers)
- json_obj = r.json()
- print(json_obj)

5.响应示例
- {
- "items": {
- "sid": "5ef8696821adbc000127fad1",
- "page": 1,
- "page_size": 20,
- "real_total_results": 2000,
- "total_results": 2000,
- "pagecount": 100,
- "data_from": "smallredbook",
- "item": [
- {
- "title": "斑马纹衬衣",
- "desc": "Heydress 斑马纹衬衫女秋款长袖法式小众设计感上衣早秋复古印花条纹衬衣 花色",
- "num_iid": "5f32603f0cf9a14647c5d094",
- "price": 326,
- "orginal_price": null,
- "promotion_price": 326,
- "pic_url": "https://qimg.xiaohongshu.com/ffa0fd9add2f8dc8b48ee156c73d24fc37c08495?itemId=5f32603f0cf9a14647c5d094&imageView2/1/w/320/h/320/q/90.jpg",
- "sales": 0,
- "seller_id": "5ef8696821adbc000127fad1",
- "seller_nick": "Heydress旗舰店",
- "detail_url": "www.xiaohongshu.com/goods/5f32603f0cf9a14647c5d094"
- },
- {
- "title": "伞摆褶裥半身裙",
- "desc": "Heydress 半身裙秋冬女中长款高腰垂坠感a字裙设计感松紧腰显瘦气质半裙 黑色 XS",
- "num_iid": "5f7e7551ee883218a99ec3ec",
- "price": 399,
- "orginal_price": null,
- "promotion_price": 399,

Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。