万邦小红书获得店铺的所有商品 API 返回值说明

item_search_shop-获得店铺的所有商品 [查看演示] API测试工具 注册开通

smallredbook.item_search_shop

公共参数

请求地址: https://api-gw.onebound.cn/smallredbook/item_search_shop

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

请求参数:sid=5ef8696821adbc000127fad1&page=&sort=&

参数说明: sid:sellerid page:页码
sort: 新品:new_arrival 综合:default 销量:sale 种草:fav_count 价格降序:bid 价格升序:_bid

响应参数

Version: Date:

名称 类型 必须 示例值 描述
title
String 0 中国·创意设计感连衣裙 商品标题
desc
String 0 KUOSE阔色 2020秋季新款女装减龄学院风背带裙毛呢高腰半身裙洋气穿搭 黑色 描述
num_iid
String 0 5f50ad1981d4c125e500a2d1 宝贝ID
price
Float 0 205.2 价格
orginal_price
Float 0 912 原价格
promotion_price
Float 0 205.2 优惠价格
pic_url
String 0 https://qimg.xiaohongshu.com/5c925db612b045a350f0f17079ffa2d38f23dd43?itemId=5f50ad1981d4c125e500a2d1&imageView2/1/w/320/h/427/q/90.jpg%7Cwatermark/1/image/aHR0cDovL3FpbWctMTI1MTUyNDMxOS5waWNzaC5teXFjbG91ZC5jb20vb2Rpbi9hZDk3MzQ4ZjgzYzM3OTQ5NWQ2ZmMzM2I2ZjI1ZThlZTg0YWQ0NmFhP3dhdGVybWFyay8yL2R4LzI4L2R5LzUvZ3Jhdml0eS9zb3V0aHdlc3QvZm9udC9VR2x1WjBaaGJtZGlaQzUwZEdZPS9mb250c2l6ZS8yNi9maWxsL0kwWkdSa1pHUmc9PS90ZXh0L01UZzE=/dx/0/dy/0/gravity/southwest 宝贝图片
sales
Int 0 14830 销量
seller_id
String 0 5b21104303da487381b41ccc 卖家ID
seller_nick
String 0 时沫女装专营店 掌柜昵称
detail_url
String 0 www.xiaohongshu.com/goods/5f50ad1981d4c125e500a2d1 宝贝链接
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.onebound.cn/smallredbook/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&sid=5ef8696821adbc000127fad1&page=&sort=&"
<?php

// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
$method = "GET";
$url = "https://api-gw.onebound.cn/smallredbook/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&sid=5ef8696821adbc000127fad1&page=&sort=&";
$curl = curl_init();
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST,FALSE);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER,FALSE);
curl_setopt($curl, CURLOPT_FAILONERROR, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HEADER, true);
curl_setopt($curl, CURLOPT_ENCODING, "gzip");
var_dump(curl_exec($curl));
?>
<?php
//定义缓存目录和引入文件
define("DIR_RUNTIME","runtime/");
define("DIR_ERROR","runtime/");
define("SECACHE_SIZE","0");
//SDK下载地址 https://open.onebound.cn/help/demo/sdk/onebound-api-sdk.zip
include ("ObApiClient.php");

$obapi = new otao\ObApiClient();
$obapi->api_url = "http://api-gw.onebound.cn/";
$obapi->api_urls = array("http://api-gw.onebound.cn/","http://api-1.onebound.cn/");//备用API服务器
$obapi->api_urls_on = true;//当网络错误时,是否启用备用API服务器
$obapi->api_key = "<您自己的apiKey>";
$obapi->api_secret = "<您自己的apiSecret>";
$obapi->api_version ="";
$obapi->secache_path ="runtime/";
$obapi->secache_time ="86400";
$obapi->cache = true;

$api_data = $obapi->exec(
                array(
	                "api_type" =>"smallredbook",
	                "api_name" =>"item_search_shop",
	                "api_params"=>array (
  'sid' => '5ef8696821adbc000127fad1',
  'page' => '',
  'sort' => '',
)
                )
            );
 var_dump($api_data);
?>
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.net.URL;
import java.nio.charset.Charset;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.PrintWriter;
import java.net.URLConnection;

public class Example {
	private static String readAll(Reader rd) throws IOException {
		StringBuilder sb = new StringBuilder();
		int cp;
		while ((cp = rd.read()) != -1) {
			sb.append((char) cp);
		}
		return  sb.toString();
	}
	public static JSONObject postRequestFromUrl(String url, String body) throws IOException, JSONException {
		URL realUrl = new URL(url);
		URLConnection conn = realUrl.openConnection();
		conn.setDoOutput(true);
		conn.setDoInput(true);
		PrintWriter out = new PrintWriter(conn.getOutputStream());
		out.print(body);
		out.flush();
		InputStream instream = conn.getInputStream();
		try {
			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
			String jsonText = readAll(rd);
			JSONObject json = new JSONObject(jsonText);
			return json;
		} finally {
			instream.close();
		}
	}
	public static JSONObject getRequestFromUrl(String url) throws IOException, JSONException {
		URL realUrl = new URL(url);
		URLConnection conn = realUrl.openConnection();
		InputStream instream = conn.getInputStream();
		try {
			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
			String jsonText = readAll(rd);
			JSONObject json = new JSONObject(jsonText);
			return json;
		} finally {
			instream.close();
		}
	}
	public static void main(String[] args) throws IOException, JSONException {
		// 请求示例 url 默认请求参数已经URL编码处理
		String url = "https://api-gw.onebound.cn/smallredbook/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&sid=5ef8696821adbc000127fad1&page=&sort=&";
		JSONObject json = getRequestFromUrl(url);
		System.out.println(json.toString());
	}

}
//using System.Net.Security;
//using System.Security.Cryptography.X509Certificates;
private const String method = "GET";
static void Main(string[] args)
{
	String bodys = "";
	// 请求示例 url 默认请求参数已经做URL编码
	String url = "https://api-gw.onebound.cn/smallredbook/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&sid=5ef8696821adbc000127fad1&page=&sort=&";
	HttpWebRequest httpRequest = null;
	HttpWebResponse httpResponse = null; 
	if (url.Contains("https://"))
	{
		ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
		httpRequest = (HttpWebRequest)WebRequest.CreateDefault(new Uri(url));
	}
	else
	{
		httpRequest = (HttpWebRequest)WebRequest.Create(url);
	}
	httpRequest.Method = method;
	if (0 < bodys.Length)
	{
		byte[] data = Encoding.UTF8.GetBytes(bodys);
		using (Stream stream = httpRequest.GetRequestStream())
		{
		stream.Write(data, 0, data.Length);
		}
	}
	try
	{
		httpResponse = (HttpWebResponse)httpRequest.GetResponse();
	}
	catch (WebException ex)
	{
		httpResponse = (HttpWebResponse)ex.Response;
	}
	Console.WriteLine(httpResponse.StatusCode);
	Console.WriteLine(httpResponse.Method);
	Console.WriteLine(httpResponse.Headers);
	Stream st = httpResponse.GetResponseStream();
	StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8"));
	Console.WriteLine(reader.ReadToEnd());
	Console.WriteLine("\n");
}
public static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
{
	return true;
}
# 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/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)
url := fmt.Sprintf("https://api-gw.onebound.cn/smallredbook/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&sid=5ef8696821adbc000127fad1&page=&sort=&", params)
req, err := http.NewRequest("GET", url, nil)
if err != nil {
    panic(err)
}
req.Header.Set("Authorization", apiKey)

client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
    panic(err)
}
defer resp.Body.Close()

body, err := ioutil.ReadAll(resp.Body)
if err != nil {
    panic(err)
}

fmt.Println(string(body))
fetch('https://api-gw.onebound.cn/smallredbook/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({"sid":"5ef8696821adbc000127fad1","page":"","sort":""})// request parameters here
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error));
<script src="js/obapi.js"></script>
<script type="text/javascript">
obAPI.config({
    debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
    api_url: "https://api-gw.onebound.cn", // 
    api_key: "<您自己的apiKey>", // 必填,
    api_secret: "<您自己的apiSecret>", //
    lang: "cn", // 
    timestamp: "", // 必填,生成签名的时间戳
    nonceStr: "", // 必填,生成签名的随机串
    signature: "",// 必填,签名
    jsApiList: [] // 必填,需要使用的JS接口列表
});
</script>
<div id="api_data_box"></div>
<script type="text/javascript">
obAPI.exec(
     {
     "api_type":"smallredbook",
     "api_name" : "item_search_shop",
     "api_params": {"sid":"5ef8696821adbc000127fad1","page":"","sort":""}//sid=5ef8696821adbc000127fad1&page=&sort=&,#具体参数请参考文档说明
     },
     function(e){
        document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
     }
);
</script>
require "net/http"
require "uri"
url = URI("https://api-gw.onebound.cn/smallredbook/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&sid=5ef8696821adbc000127fad1&page=&sort=&")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body 
import Foundation
 
let url = URL(string: "https://api-gw.onebound.cn/smallredbook/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&sid=5ef8696821adbc000127fad1&page=&sort=&")!
let task = URLSession.shared.dataTask(with: url) { data, response, error in
    guard let data = data else {
        print("Error: No data was returned")
        return
    }
     
    if let data = String(data: data, encoding: .utf8) {
        print(data)
    }
}
task.resume()
NSURL *myUrl = [NSURL URLWithString:@"https://api-gw.onebound.cn/smallredbook/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&sid=5ef8696821adbc000127fad1&page=&sort=&"];

NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:myUrl cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:60.0];

[request setHTTPMethod:@"GET"];
NSError *error;
NSURLResponse *response;

NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];

NSString *result = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"%@",result);
#include<stdio.h>
#include <stdlib.h>
#include<string.h>
#include<curl/curl.h>

int main(){
  CURL *curl;  
  CURLcode res;   
  struct curl_slist *headers=NULL; 

  char url[] = "https://api-gw.onebound.cn/smallredbook/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&sid=5ef8696821adbc000127fad1&page=&sort=&";
  curl_global_init(CURL_GLOBAL_ALL); 
  curl = curl_easy_init(); 

  if(curl) {
    curl_easy_setopt(curl, CURLOPT_URL,url);
    headers = curl_slist_append(headers, "Content-Type: application/json"); 

    curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); 
    res = curl_easy_perform(curl);

    if(res != CURLE_OK){
      printf("curl_easy_perform(): %s\n",curl_easy_strerror(res));                     
    }
    curl_easy_cleanup(curl);          
  }
  curl_global_cleanup();
  return 0;
}
#include<iostream>
#include<string>
#include<curl/curl.h>

using namespace std;

static size_t Data(void *ptr, size_t size, size_t nmemb, string *stream)
{
    std::size_t realSize = size *nmemb;
    auto *realPtr = reinterpret_cast<char *>(ptr);

    for (std::size_t i=0;i<realSize;++i) {
        *(stream) += *(realPtr + i);
    }

    return realSize;
}

int main(){

     CURL *curl;
     CURLcode result;
     string readBuffer;
     curl = curl_easy_init();

     if(curl) {

         curl_easy_setopt(curl, CURLOPT_URL, "https://api-gw.onebound.cn/smallredbook/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&sid=5ef8696821adbc000127fad1&page=&sort=&");
         curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
         curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, Data);
         curl_easy_setopt(curl, CURLOPT_WRITEDATA, &readBuffer);

         result = curl_easy_perform(curl);

         if(result == CURLE_OK) {
             cout<<readBuffer<<endl;
         }else{
             cerr<<"curl_easy error:"<<curl_easy_strerror(result)<<endl;
         }

         curl_easy_cleanup(curl);
     }
     return 0;
}
const https = require("https");

https.get("https://api-gw.onebound.cn/smallredbook/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&sid=5ef8696821adbc000127fad1&page=&sort=&", (resp) => {
  let data = "";

  resp.on("data", (chunk) => {
    data += chunk;
  });

  resp.on("end", () => {
    console.log(data);
  });
}).on("error", (err) => {
  console.log("Error: " + err.message);
});
import java.net.HttpURLConnection
import java.net.URL

fun main() {
    val url = URL("https://api-gw.onebound.cn/smallredbook/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&sid=5ef8696821adbc000127fad1&page=&sort=&")
    val con = url.openConnection() as HttpURLConnection
    con.requestMethod = "GET"

    val responseCode = con.responseCode
    if (responseCode == HttpURLConnection.HTTP_OK) { // success
        val inputLine = con.inputStream.bufferedReader().use { it.readText() }
        println(inputLine)
    } else {
        println("GET request failed")
    }
}
use std::io::{self, Read};
use reqwest;

fn main() -> io::Result<()> {

    let mut resp = reqwest::get("https://api-gw.onebound.cn/smallredbook/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&sid=5ef8696821adbc000127fad1&page=&sort=&")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

library(httr)
r <- GET("https://api-gw.onebound.cn/smallredbook/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&sid=5ef8696821adbc000127fad1&page=&sort=&")
content(r)
url = "https://api-gw.onebound.cn/smallredbook/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&sid=5ef8696821adbc000127fad1&page=&sort=&";
response = webread(url);
disp(response);
响应示例
{
			"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,
				"pic_url": "https://qimg.xiaohongshu.com/35b585ee9c4628ff59f4043f96024ed5e8b50da4?itemId=5f7e7551ee883218a99ec3ec&imageView2/1/w/320/h/320/q/90.jpg",
				"sales": 0,
				"seller_id": "5ef8696821adbc000127fad1",
				"seller_nick": "Heydress旗舰店",
				"detail_url": "www.xiaohongshu.com/goods/5f7e7551ee883218a99ec3ec"
			},
			{
				"title": "方格收腰羽绒服",
				"desc": "Heydress 白鹅绒羽绒服女冬季珠光绗线菱格小翻领腰部抽绳设计收腰轻薄外套 黑色 S",
				"num_iid": "5fa7fb91e5985000011daa5a",
				"price": 699,
				"orginal_price": null,
				"promotion_price": 699,
				"pic_url": "https://qimg.xiaohongshu.com/arkgoods/deebe1ef78cfb347b94713e14003a9c51c746366?itemId=5fa7fb91e5985000011daa5a&imageView2/1/w/320/h/320/q/90.jpg",
				"sales": 0,
				"seller_id": "5ef8696821adbc000127fad1",
				"seller_nick": "Heydress旗舰店",
				"detail_url": "www.xiaohongshu.com/goods/5fa7fb91e5985000011daa5a"
			},
			{
				"title": "亮丝开叉连衣裙",
				"desc": "Heydress 金丝绒连衣裙女秋冬法式方领赫本风小黑裙 黑色 XS",
				"num_iid": "5fcb508c2c96d20001616db5",
				"price": 443,
				"orginal_price": null,
				"promotion_price": 443,
				"pic_url": "https://qimg.xiaohongshu.com/arkgoods/0fc15ccb808b4469d5886da71f84e33aaac63072?itemId=5fcb508c2c96d20001616db5&imageView2/1/w/320/h/320/q/90.png",
				"sales": 0,
				"seller_id": "5ef8696821adbc000127fad1",
				"seller_nick": "Heydress旗舰店",
				"detail_url": "www.xiaohongshu.com/goods/5fcb508c2c96d20001616db5"
			},
			{
				"title": "蕾丝领褶裥连衣裙",
				"desc": "Heydress 丝绒小黑裙连衣裙女秋冬黑白撞色褶皱泡泡袖中裙复古气质礼服裙子 黑色 XS",
				"num_iid": "5f9a6f3a68bf58000170812c",
				"price": 469,
				"orginal_price": null,
				"promotion_price": 469,
				"pic_url": "https://qimg.xiaohongshu.com/arkgoods/f0ae2457b98de2e6d0628196fa85c299f363e34f?itemId=5f9a6f3a68bf58000170812c&imageView2/1/w/320/h/320/q/90.jpg",
				"sales": 0,
				"seller_id": "5ef8696821adbc000127fad1",
				"seller_nick": "Heydress旗舰店",
				"detail_url": "www.xiaohongshu.com/goods/5f9a6f3a68bf58000170812c"
			},
			{
				"title": "自发热牛仔裤",
				"desc": "Heydress 黑科技薄绒自发热牛仔裤女秋冬高腰修身直筒加绒黑色裤子 黑色 S",
				"num_iid": "5fa8de15cb581a0001551426",
				"price": 399,
				"orginal_price": null,
				"promotion_price": 399,
				"pic_url": "https://qimg.xiaohongshu.com/arkgoods/4fe54df6fb7b98b490a60dd242690d3a0a29952e?itemId=5fa8de15cb581a0001551426&imageView2/1/w/320/h/320/q/90.jpg",
				"sales": 0,
				"seller_id": "5ef8696821adbc000127fad1",
				"seller_nick": "Heydress旗舰店",
				"detail_url": "www.xiaohongshu.com/goods/5fa8de15cb581a0001551426"
			},
			{
				"title": "圆领麻花羊毛套头",
				"desc": "Heydress 纯羊毛圆领麻花毛衣女秋冬复古经典百搭宽松外穿套头慵懒风上衣 咖色 M(165/88A)",
				"num_iid": "5fc88d916c5194000179dce8",
				"price": 420,
				"orginal_price": null,
				"promotion_price": 420,
				"pic_url": "https://qimg.xiaohongshu.com/arkgoods/ce832b817c41a8ca7fdeb03038aae687033d8ac4?itemId=5fc88d916c5194000179dce8&imageView2/1/w/320/h/320/q/90.jpg",
				"sales": 0,
				"seller_id": "5ef8696821adbc000127fad1",
				"seller_nick": "Heydress旗舰店",
				"detail_url": "www.xiaohongshu.com/goods/5fc88d916c5194000179dce8"
			},
			{
				"title": "黑白格拼片半裙",
				"desc": "Heydress 黑白格子半身裙女秋冬拼接设计中长款复古高腰伞裙a字不规则半裙 花色",
				"num_iid": "5f5227250cf9a172eb3843d0",
				"price": 399,
				"orginal_price": null,
				"promotion_price": 399,
				"pic_url": "https://qimg.xiaohongshu.com/09d44c3e10ff5ce8000b47510d7900006a797356?itemId=5f5227250cf9a172eb3843d0&imageView2/1/w/320/h/320/q/90.jpg",
				"sales": 0,
				"seller_id": "5ef8696821adbc000127fad1",
				"seller_nick": "Heydress旗舰店",
				"detail_url": "www.xiaohongshu.com/goods/5f5227250cf9a172eb3843d0"
			},
			{
				"title": "复古插肩毛呢大衣",
				"desc": "Heydress 毛呢外套气质奶茶驼色女秋冬法式复古中长款茧型羊绒双面呢子大衣 驼色",
				"num_iid": "5f8ea374616976000149e467",
				"price": 980,
				"orginal_price": null,
				"promotion_price": 980,
				"pic_url": "https://qimg.xiaohongshu.com/arkgoods/5625d3a22b165e75bc4a9c65b65a948fc0c0d0fa?itemId=5f8ea374616976000149e467&imageView2/1/w/320/h/320/q/90.png",
				"sales": 0,
				"seller_id": "5ef8696821adbc000127fad1",
				"seller_nick": "Heydress旗舰店",
				"detail_url": "www.xiaohongshu.com/goods/5f8ea374616976000149e467"
			},
			{
				"title": "宽松针织连衣裙",
				"desc": "Heydress 针织连衣裙女秋冬新款轻奢兔绒直筒宽松显瘦长裙开叉减龄长袖裙子 米杏色 S",
				"num_iid": "5f56e5eea09141267ee6bd12",
				"price": 565,
				"orginal_price": null,
				"promotion_price": 565,
				"pic_url": "https://qimg.xiaohongshu.com/20648fe3da4bd55b5124bc5b8e336a5e7e13892c?itemId=5f56e5eea09141267ee6bd12&imageView2/1/w/320/h/320/q/90.jpg",
				"sales": 0,
				"seller_id": "5ef8696821adbc000127fad1",
				"seller_nick": "Heydress旗舰店",
				"detail_url": "www.xiaohongshu.com/goods/5f56e5eea09141267ee6bd12"
			},
			{
				"title": "V领短款针织马甲",
				"desc": "Heydress 秋冬气质叠搭高级感v领针织马甲短款女秋款百搭外穿宽松背心毛衣 咖啡色",
				"num_iid": "5f5214945305655f86beb67d",
				"price": 249,
				"orginal_price": null,
				"promotion_price": 249,
				"pic_url": "https://qimg.xiaohongshu.com/b608788787e41eb2cdfeea7556cd1a98b4401a70?itemId=5f5214945305655f86beb67d&imageView2/1/w/320/h/320/q/90.jpg",
				"sales": 0,
				"seller_id": "5ef8696821adbc000127fad1",
				"seller_nick": "Heydress旗舰店",
				"detail_url": "www.xiaohongshu.com/goods/5f5214945305655f86beb67d"
			},
			{
				"title": "鹅绒收腰长款羽绒",
				"desc": "Heydress 鹅绒羽绒服女冬季中长款轻羽绒时尚白色长款过膝轻薄收腰大衣外套 白色 M",
				"num_iid": "5fc8af085233240001b8358b",
				"price": 1480,
				"orginal_price": null,
				"promotion_price": 1480,
				"pic_url": "https://qimg.xiaohongshu.com/arkgoods/82285e77cc51fbafda89aa4a869e8b35fd4672f6?itemId=5fc8af085233240001b8358b&imageView2/1/w/320/h/320/q/90.png",
				"sales": 0,
				"seller_id": "5ef8696821adbc000127fad1",
				"seller_nick": "Heydress旗舰店",
				"detail_url": "www.xiaohongshu.com/goods/5fc8af085233240001b8358b"
			},
			{
				"title": "多色菱形格羽绒服",
				"desc": "Heydress 黑色羽绒服2020年新款女短款小个子白鸭绒时尚宽松廓形冬季外套 皮粉色 L",
				"num_iid": "5f9bce1abcb26d0001dd2073",
				"price": 875,
				"orginal_price": null,
				"promotion_price": 875,
				"pic_url": "https://qimg.xiaohongshu.com/arkgoods/e53669b206ff3af844660d69af4539921ad4ef5f?itemId=5f9bce1abcb26d0001dd2073&imageView2/1/w/320/h/320/q/90.jpg",
				"sales": 0,
				"seller_id": "5ef8696821adbc000127fad1",
				"seller_nick": "Heydress旗舰店",
				"detail_url": "www.xiaohongshu.com/goods/5f9bce1abcb26d0001dd2073"
			},
			{
				"title": "粗花呢斜裁半裙",
				"desc": "Heydress 半身裙女春秋粗花呢针织中长款高腰a字鱼尾裙流苏半裙裙子 咖啡色 M",
				"num_iid": "5f522b8981d4c125e5011527",
				"price": 399,
				"orginal_price": null,
				"promotion_price": 399,
				"pic_url": "https://qimg.xiaohongshu.com/78023bd51c96e6722d69b64c2a1fa8ab02d29bfd?itemId=5f522b8981d4c125e5011527&imageView2/1/w/320/h/320/q/90.jpg",
				"sales": 0,
				"seller_id": "5ef8696821adbc000127fad1",
				"seller_nick": "Heydress旗舰店",
				"detail_url": "www.xiaohongshu.com/goods/5f522b8981d4c125e5011527"
			},
			{
				"title": "浅灰拼接连衣裙",
				"desc": "Heydress 假两件连衣裙女心机露背2020年秋季新款针织拼接赫本风优雅裙子 灰色 S",
				"num_iid": "5f843e3aa091412e10e4ecf3",
				"price": 369,
				"orginal_price": null,
				"promotion_price": 369,
				"pic_url": "https://qimg.xiaohongshu.com/bcb31535944527ae8b4acdd414be24c9f8ed821b?itemId=5f843e3aa091412e10e4ecf3&imageView2/1/w/320/h/320/q/90.jpg",
				"sales": 0,
				"seller_id": "5ef8696821adbc000127fad1",
				"seller_nick": "Heydress旗舰店",
				"detail_url": "www.xiaohongshu.com/goods/5f843e3aa091412e10e4ecf3"
			},
			{
				"title": "花边领百褶小黑裙",
				"desc": "Heydress 小黑裙连衣裙女秋季赫本风泡泡袖立领木耳边气质百褶显瘦长袖裙子 黑色",
				"num_iid": "5f696db681d4c12266ab6eff",
				"price": 449,
				"orginal_price": null,
				"promotion_price": 449,
				"pic_url": "https://qimg.xiaohongshu.com/bf40896c2cf7aebd28950536e9870ab75c5fc5e9?itemId=5f696db681d4c12266ab6eff&imageView2/1/w/320/h/320/q/90.jpg",
				"sales": 0,
				"seller_id": "5ef8696821adbc000127fad1",
				"seller_nick": "Heydress旗舰店",
				"detail_url": "www.xiaohongshu.com/goods/5f696db681d4c12266ab6eff"
			},
			{
				"title": "尖领单排扣大衣",
				"desc": "Heydress 长毛绒双面呢大衣女冬季极简风直筒焦糖色两色中长款保暖毛呢外套 焦糖色",
				"num_iid": "5fa80d5be5985000011dabcd",
				"price": 1299,
				"orginal_price": null,
				"promotion_price": 1299,
				"pic_url": "https://qimg.xiaohongshu.com/arkgoods/ff23e41549924f7ea249101a05a3ff07d889d4e2?itemId=5fa80d5be5985000011dabcd&imageView2/1/w/320/h/320/q/90.jpg",
				"sales": 0,
				"seller_id": "5ef8696821adbc000127fad1",
				"seller_nick": "Heydress旗舰店",
				"detail_url": "www.xiaohongshu.com/goods/5fa80d5be5985000011dabcd"
			},
			{
				"title": "修身松紧腰连衣裙",
				"desc": "Heydress 复古丝绒小黑裙女秋冬华丽经典中长款连衣裙收腰设计感礼服裙裙子 黑色 XS",
				"num_iid": "5fa80736fb33f3000185e1ad",
				"price": 439,
				"orginal_price": null,
				"promotion_price": 439,
				"pic_url": "https://qimg.xiaohongshu.com/arkgoods/86a506f32f105643673a5b93573f418762ca8bcf?itemId=5fa80736fb33f3000185e1ad&imageView2/1/w/320/h/320/q/90.jpg",
				"sales": 0,
				"seller_id": "5ef8696821adbc000127fad1",
				"seller_nick": "Heydress旗舰店",
				"detail_url": "www.xiaohongshu.com/goods/5fa80736fb33f3000185e1ad"
			},
			{
				"title": "多色羊毛打底衫",
				"desc": "Heydress 可机洗针织衫女秋季气质焦糖色半高领打底衫羊毛毛衣修身内搭上衣 浅棕色 M",
				"num_iid": "5f6ae5c30cf9a14cff05c88e",
				"price": 265,
				"orginal_price": null,
				"promotion_price": 265,
				"pic_url": "https://qimg.xiaohongshu.com/268bced187f797824f3d6522f5c9376b4a59f26f?itemId=5f6ae5c30cf9a14cff05c88e&imageView2/1/w/320/h/427/q/90.jpg",
				"sales": 0,
				"seller_id": "5ef8696821adbc000127fad1",
				"seller_nick": "Heydress旗舰店",
				"detail_url": "www.xiaohongshu.com/goods/5f6ae5c30cf9a14cff05c88e"
			},
			{
				"title": "丝绒拼蕾丝连衣裙",
				"desc": "Heydress 蕾丝连衣裙女秋冬法式赫本风气质经典小黑裙镂空复古丝绒黑色裙子 黑色 XS",
				"num_iid": "5fcb55804013bb00017c0e70",
				"price": 398,
				"orginal_price": null,
				"promotion_price": 398,
				"pic_url": "https://qimg.xiaohongshu.com/arkgoods/2dab0d398663f5f701c1a2fbb8eb6757b01738b7?itemId=5fcb55804013bb00017c0e70&imageView2/1/w/320/h/320/q/90.png",
				"sales": 0,
				"seller_id": "5ef8696821adbc000127fad1",
				"seller_nick": "Heydress旗舰店",
				"detail_url": "www.xiaohongshu.com/goods/5fcb55804013bb00017c0e70"
			}
		]
	},
	"error_code": "0000",
	"reason": "ok",
	"secache": "d703ae596073ff89d5d9282d2a1ac63f",
	"secache_time": 1611124322,
	"secache_date": "2021-01-20 14:32:02",
	"translate_status": "",
	"translate_time": 0,
	"language": {
		"default_lang": "cn",
		"current_lang": "cn"
	},
	"error": "",
	"cache": 0,
	"api_info": "today:0 max:5000",
	"execution_time": 0.68,
	"server_time": "Beijing/2021-01-20 14:32:02",
	"client_ip": "115.151.186.91",
	"call_args": {
		"seller_nick": "5ef8696821adbc000127fad1"
	},
	"api_type": "smallredbook",
	"translate_language": "zh-CN",
	"translate_engine": "baidu",
	"server_memory": "2.8MB",
	"request_id": "1.6007ce6212d54"
	}
异常示例
{
  "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": "taobao",
  "request_id": "15ee0ffc041242"}
相关资料
错误码解释
状态代码(error_code) 状态信息 详细描述 是否收费
0000success接口调用成功并返回相关数据
2000Search success but no result接口访问成功,但是搜索没有结果
4000Server internal error服务器内部错误
4001Network error网络错误
4002Target server error目标服务器错误
4003Param error用户输入参数错误忽略
4004Account not found用户帐号不存在忽略
4005Invalid authentication credentials授权失败忽略
4006API stopped您的当前API已停用忽略
4007Account stopped您的账户已停用忽略
4008API rate limit exceeded并发已达上限忽略
4009API maintenanceAPI维护中忽略
4010API not found with these valuesAPI不存在忽略
4012Please add api first请先添加api忽略
4013Number of calls exceeded调用次数超限忽略
4014Missing url param参数缺失忽略
4015Wrong pageToken参数pageToken有误忽略
4016Insufficient balance余额不足忽略
4017timeout error请求超时
5000unknown error未知错误
API 工具
如何获得此API
立即开通 有疑问联系客服QQ:QQ:31424016063142401606(微信同号)