万邦多平台按关键字搜索比价信息 API 返回值说明

item_search_bijia-按关键字搜索比价信息 [查看演示] API测试工具 注册开通

t1j.item_search_bijia

公共参数

请求地址: https://api-gw.onebound.cn/t1j/item_search_bijia

名称 类型 必须 描述
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版本
请求参数

请求参数:q=女装&sort=&mall_id=&category_id=&mode=

参数说明:mode:选择模式(默认为比价模式,直接使用,需要获取mall_id,mcategory_id则传cat)
q:关键词
sort:排序(传new为最新排序,默认是综合排序)
mall_id:平台ID(默认是各个平台的数据,加了则是限定返回此平台的商品)
category_id:分类ID(默认为关键词的分类,加了则分类更精确)

响应参数

Version: Date:2025-02-20

名称 类型 必须 示例值 描述
items
items[] 0 关键词获取各平台商品列表
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.onebound.cn/t1j/item_search_bijia/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&sort=&mall_id=&category_id=&mode="
<?php

// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
$method = "GET";
$url = "https://api-gw.onebound.cn/t1j/item_search_bijia/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&sort=&mall_id=&category_id=&mode=";
$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" =>"t1j",
	                "api_name" =>"item_search_bijia",
	                "api_params"=>array (
  'q' => '女装',
  'sort' => '',
  'mall_id' => '',
  'category_id' => '',
  'mode' => '',
)
                )
            );
 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/t1j/item_search_bijia/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&sort=&mall_id=&category_id=&mode=";
		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/t1j/item_search_bijia/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&sort=&mall_id=&category_id=&mode=";
	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/t1j/item_search_bijia/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&sort=&mall_id=&category_id=&mode="
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/t1j/item_search_bijia/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&sort=&mall_id=&category_id=&mode=", 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/t1j/item_search_bijia/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({"q":"\u5973\u88c5","sort":"","mall_id":"","category_id":"","mode":""})// 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":"t1j",
     "api_name" : "item_search_bijia",
     "api_params": {"q":"\u5973\u88c5","sort":"","mall_id":"","category_id":"","mode":""}//q=女装&sort=&mall_id=&category_id=&mode=,#具体参数请参考文档说明
     },
     function(e){
        document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
     }
);
</script>
require "net/http"
require "uri"
url = URI("https://api-gw.onebound.cn/t1j/item_search_bijia/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&sort=&mall_id=&category_id=&mode=")
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/t1j/item_search_bijia/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&sort=&mall_id=&category_id=&mode=")!
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/t1j/item_search_bijia/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&sort=&mall_id=&category_id=&mode="];

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/t1j/item_search_bijia/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&sort=&mall_id=&category_id=&mode=";
  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/t1j/item_search_bijia/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&sort=&mall_id=&category_id=&mode=");
         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/t1j/item_search_bijia/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&sort=&mall_id=&category_id=&mode=", (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/t1j/item_search_bijia/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&sort=&mall_id=&category_id=&mode=")
    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/t1j/item_search_bijia/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&sort=&mall_id=&category_id=&mode=")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

library(httr)
r <- GET("https://api-gw.onebound.cn/t1j/item_search_bijia/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&sort=&mall_id=&category_id=&mode=")
content(r)
url = "https://api-gw.onebound.cn/t1j/item_search_bijia/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&sort=&mall_id=&category_id=&mode=";
response = webread(url);
disp(response);
响应示例
{
      "items": {
        "page": "1",
        "real_total_results": 43,
        "total_results": 43,
        "page_size": 43,
        "page_count": "1",
        "_ddf": "alex",
        "item": [
          {
            "title": "卓雅周末2025春季通勤双层蕾丝绣花大翻领长袖衬衫",
            "price": 349,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6921005773516280969.html"
          },
          {
            "title": "卓雅周末2025春季西装领抽绳荷叶边爱心双排扣西装连衣裙",
            "price": 746,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6920423329989135625.html"
          },
          {
            "title": "【绵羊毛面料】2025春高级感翻领腰带中长款毛呢大衣外套",
            "price": 1083,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6921084363099310153.html"
          },
          {
            "title": "卓雅周末2025春季海军领收腰单排扣链条碎花腰封衬衫连衣裙",
            "price": 623,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6919794291118087113.html"
          },
          {
            "title": "卓雅周末2025春季蝴蝶结提花无袖A字吊带连衣裙女",
            "price": 592,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6920775298731574409.html"
          },
          {
            "title": "女装上衣2024款圆领短袖休闲舒适透气跑步运动T恤尺码偏大",
            "price": 123,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6920819134466678366.html"
          },
          {
            "title": "卓雅周末2025春季通勤翻领字母提花翻盖西装外套",
            "price": 483,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6919998583242451977.html"
          },
          {
            "title": "卓雅周末2025春季小香风花纱撞色格纹蝴蝶结短外套",
            "price": 524,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6920055066091453385.html"
          },
          {
            "title": "卓雅周末2025春季复古油画花朵蕾丝钩花收腰连衣裙",
            "price": 757,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6920775298124612745.html"
          },
          {
            "title": "卓雅周末冬季软糯甜美小香风珠饰短羊羔毛外套",
            "price": 1036,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6920587102993017097.html"
          },
          {
            "title": "运动风通勤拼色长袖宽松卫衣可爱小狗刺绣印花女式圆领T恤",
            "price": 99,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6921176692923434513.html"
          },
          {
            "title": "女装短袖上衣跑步训练运动半袖休闲透气圆领女式T恤",
            "price": 149,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6919731878842259845.html"
          },
          {
            "title": "女子短裙包臀休闲网球羽毛球运动裙防走光",
            "price": 99,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6918925807654903889.html"
          },
          {
            "title": "燠阳春秋开衫女V领针织衫百搭上衣时尚宽松小外套打底外搭 中灰色 XL 【120-140斤】",
            "price": 39.9,
            "name": "京东",
            "detail_url": "https://item.jd.com/10115052650821.html"
          },
          {
            "title": "自巧(ZIQIAO)小个子赫本风绒感收腰假两件连衣裙女2023冬吊带式中长裙 黑白拼 XXS (1码)",
            "price": 390,
            "name": "京东",
            "detail_url": "https://item.jd.com/10090043171299.html"
          },
          {
            "title": "25冬季Kappa/卡帕女士内衣美背文胸性感一字款",
            "price": 34.9,
            "name": "天猫精选",
            "detail_url": "https://detail.tmall.com/item.htm?id=824302177632"
          },
          {
            "title": "范思蓝恩秋季法式花边U领连衣裙女秋装2024优雅气质织绳收腰长裙女 海沫绿 XS",
            "price": 454,
            "name": "京东",
            "detail_url": "https://item.jd.com/10109071968632.html"
          },
          {
            "title": "范思蓝恩假两件撞色V领字母提花毛针织衫女冬装安克拉红宽松毛衣 安哥拉红 M",
            "price": 489,
            "name": "京东",
            "detail_url": "https://item.jd.com/10125973133939.html"
          },
          {
            "title": "自巧小个子小香风外搭针织开衫女2024初秋气质通勤全棉针织衫 牛奶白 L (5码)",
            "price": 297,
            "name": "京东",
            "detail_url": "https://item.jd.com/10111918689907.html"
          },
          {
            "title": "【百搭有趣】猫咪刺绣别致帽绳设计感连帽卫衣女春薄绒上衣",
            "price": 116,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6920539224657986133.html"
          },
          {
            "title": "女款秋季休闲翻领宽松套头卫衣",
            "price": 144,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6921097303974245068.html"
          },
          {
            "title": "【超值福利】美拉德垂坠休闲裤女2024秋安哥拉红弹力微喇叭裤",
            "price": 89,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6920720420553698589.html"
          },
          {
            "title": "简约V领无袖背心裙2024冬季时尚百搭加厚保暖打底连衣裙子",
            "price": 260,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6921106083073367234.html"
          },
          {
            "title": "班尼路(Baleno)摇粒绒立领开衫外套女2025年春秋季双面加绒加厚保暖毛毛长袖上衣 杏/纯色 S",
            "price": 89.9,
            "name": "京东",
            "detail_url": "https://item.jd.com/100142958400.html"
          },
          {
            "title": "SIINSIIN立领冰皮防晒衣女2025夏季修身小细腰冰丝外套 【立领款】大象灰 XL",
            "price": 219.9,
            "name": "京东",
            "detail_url": "https://item.jd.com/10100804006037.html"
          },
          {
            "title": "BLUE ERDOS羊绒衫女100%山羊绒24秋冬百搭基础款纯色打底毛衣针织套衫 燕麦色 -V领 L (170)",
            "price": 1130,
            "name": "京东",
            "detail_url": "https://item.jd.com/10113352491476.html"
          },
          {
            "title": "茵曼(INMAN)法式通勤高级感长袖职业衬衫合集2025春女装洋气百搭衬衣上衣 霜白色-提花面料 M",
            "price": 399,
            "name": "京东",
            "detail_url": "https://item.jd.com/10111823911851.html"
          },
          {
            "title": "【会呼吸的棉】秋法式松弛感圆领司马克收腰落肩藏肉衬衣女上衣",
            "price": 144,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6921297509340969537.html"
          },
          {
            "title": "2025春季v领针织T恤女纯色百搭时尚显瘦长袖打底衫上衣",
            "price": 50,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6921143443956532555.html"
          },
          {
            "title": "GAP女装2024秋冬刺绣logo丝绒里抽绳立领连帽卫衣外套600783 灰色 S (160/80A亚洲尺码)",
            "price": 382.33,
            "name": "京东",
            "detail_url": "https://item.jd.com/100120069339.html"
          },
          {
            "title": "秋冬季休闲裤女潮流高腰显瘦百搭窄版垂感阔腿加绒加厚可选长裤",
            "price": 81,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6920240792164287897.html"
          },
          {
            "title": "秋冬季休闲裤女潮流高腰显瘦百搭窄版垂感阔腿加绒加厚可选长裤",
            "price": 81,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6920240792164308377.html"
          },
          {
            "title": "秋冬季休闲裤女潮流高腰显瘦百搭窄版垂感阔腿加绒加厚可选长裤",
            "price": 81,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6920158103662047321.html"
          },
          {
            "title": "秋冬季休闲裤女潮流高腰显瘦百搭窄版垂感阔腿加绒加厚可选长裤",
            "price": 85,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6920158103662235737.html"
          },
          {
            "title": "秋冬季休闲裤女潮流高腰显瘦百搭窄版垂感阔腿加绒加厚可选长裤",
            "price": 81,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6920240792164291993.html"
          },
          {
            "title": "秋冬季休闲裤女潮流高腰显瘦百搭窄版垂感阔腿加绒加厚可选长裤",
            "price": 81,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6920158103661891673.html"
          },
          {
            "title": "秋冬季休闲裤女潮流高腰显瘦百搭窄版垂感阔腿加绒加厚可选长裤",
            "price": 85,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6920240792164304281.html"
          },
          {
            "title": "秋冬季休闲裤女潮流高腰显瘦百搭窄版垂感阔腿加绒加厚可选长裤",
            "price": 85,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6920158103679373401.html"
          },
          {
            "title": "秋冬季休闲裤女潮流高腰显瘦百搭窄版垂感阔腿加绒加厚可选长裤",
            "price": 85,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6920646164723509721.html"
          },
          {
            "title": "【关晓彤同款】光腿神器外穿丝袜裸感加绒打底裤女春夏连裤袜",
            "price": 79,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6921042091139471367.html"
          },
          {
            "title": "【关晓彤同款】光腿神器外穿丝袜裸感加绒打底裤女春夏连裤袜",
            "price": 67,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6921042091122612231.html"
          },
          {
            "title": "秋冬热卖100%绵羊毛安可拉红保暖半高领毛衣女打底羊毛衫",
            "price": 87,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6921155153646398344.html"
          },
          {
            "title": "秋冬热卖100%绵羊毛安可拉红保暖半高领毛衣女打底羊毛衫",
            "price": 87,
            "name": "唯品会",
            "detail_url": "https://www.vip.com/detail-0000000000-6921155153646336904.html"
          }
        ]
      },
      "error": "",
      "reason": "",
      "error_code": "0000",
      "cache": 0,
      "api_info": "today:67 max:10000 all[282=67+22+193];expires:2030-10-30",
      "execution_time": "3.214",
      "server_time": "Beijing/2025-02-21 16:41:08",
      "client_ip": "117.162.195.171",
      "call_args": [],
      "api_type": "t1j",
      "translate_language": "zh-CN",
      "translate_engine": "google_api",
      "server_memory": "3.32MB",
      "request_id": "gw-1.67b83c2153e86",
      "last_id": "4088633199"
    }
异常示例
{
  "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/2025-02-20 14:44:00",
  "call_args": [],
  "api_type": "t1j",
  "request_id": "3.67467d4622d87"}
相关资料
错误码解释
状态代码(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:3142401606 3142401606 万邦科技企业微信