小红书商品详情API接口(商品详情页面数据接口)代码对接如下:
1.公共参数
名称 | 类型 | 必须 | 描述 |
key | String | √ | get请求方式拼接在url中,点击获取 |
api_name | String | √ | api接口名称 |
cache | String | 默认否 | |
result_type | String | 否 | json |
lang | String | 默认cn 简体中文 | |
version | String | 否 | api版本 |
2.请求参数
请求参数:note_id=5eb1097ba091410953951d17
参数说明:note_id:小红书笔记ID
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://qq390876337/smallredbook/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>¬e_id=5eb1097ba091410953951d17"
headers = {
"Accept-Encoding": "gzip",
"Connection": "close"
}
if __name__ == "__main__":
r = requests.get(url, headers=headers)
json_obj = r.json()
print(json_obj)
5.响应示例
{
"code": 0,
"success": true,
"msg": "成功",
"data": {
"cursor_score": "",
"items": [
{
"id": "63eddd2d000000001300c519",
"model_type": "note",
"note_card": {
"image_list": [
{
"file_id": "",
"height": 1706,
"width": 1280,
"url": "https://sns-img-hw.xhscdn.net/16b4ad58-560f-2570-c018-553c4a62536e",
"trace_id": ""
},
{
"file_id": "",
"height": 1706,
"width": 1280,
"url": "https://sns-img-hw.xhscdn.net/9aa0c598-5914-50f2-3adc-eac1056aa578",
"trace_id": ""
},
{
"width": 1280,
"url": "https://sns-img-hw.xhscdn.net/89f95cdf-307e-94c1-37b8-96b57b33d98f",
"trace_id": "",
"file_id": "",
"height": 1706
},
{
"width": 1280,
"url": "https://sns-img-hw.xhscdn.net/7769b682-5453-8d07-43ad-a7aa366be6a2",
"trace_id": "",
"file_id": "",
"height": 1706
}
],
"at_user_list": [ ],
"time": 1676533038000,
"share_info": {
"un_share": false
},
"type": "normal",
"title": "先亲程程后摸腿,我是莽村李宏伟~",
"user": {
"avatar": "https://sns-avatar-qc.xhscdn.com/avatar/63f202aecfabd425aded900f.jpg",
"user_id": "5d8245e80000000001005326",
"nickname": "v瑶瑶最可爱v"
},
"interact_info": {
"comment_count": "1418",
"share_count": "574",
"followed": false,
"relation": "none",
"liked": false,
"liked_count": "10498",
"collected": false,
"collected_count": "1033"
},
"tag_list": [
{
"id": "5c97097b000000000d0221a5",
"name": "痞帅",
"type": "topic"
},
{
"id": "61d7b86f000000000100982a",
"name": "我的解放日志",
"type": "topic"
},
{
"id": "53f1efa6b4c4d679d7e13559",
"name": "男神",
"type": "topic"
},
{
"id": "56f8004b14de4115615889db",
"name": "都暻秀",
"type": "topic"
},
{
"type": "topic",
"id": "62208bf5000000000101db52",
"name": "我的解放日记"
},
{
"type": "topic",
"id": "6120b152000000000101f85f",
"name": "狂飙"
},
{
"id": "6166367d0000000001006091",
"name": "莽",
"type": "topic"
},
{
"id": "63ccb02b00000000010069e3",
"name": "莽村",
"type": "topic"
},
{
"id": "63e23db500000000010079fe",
"name": "莽村村霸",
"type": "topic"
},
{
"id": "63af9e1a00000000010051f4",
"name": "恶少",
"type": "topic"
},
{
"id": "5beec4369e1dec000171af50",
"name": "恶霸",
"type": "topic"
},
{
"id": "5c56a07f000000000d016140",
"name": "痞",
"type": "topic"
}
],
"last_update_time": 1676533038000,
"note_id": "63eddd2d000000001300c519",
"desc": "8岁进体校,19岁进国家队,25岁回莽村,29岁被高启盛拿冻鱼活活打死 "
}
}
],
"current_time": 1696339111883
}
}