万邦唯品会 按图搜索唯品会商品(拍立淘) API 返回值说明

item_search_img- 按图搜索唯品会商品(拍立淘) [查看演示] API测试工具 注册开通

vip.item_search_img

公共参数

请求地址: https://api-gw.onebound.cn/vip/item_search_img

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

请求参数:imgid=/xupload.vip.com/38444a01-e842-49bc-99c7-5267f6d36628_1726122211035_tmp_search.jpg&page_token=

参数说明:imgid:唯品会图片地址(先调用上传图片(upload_img)接口,返回图片地址)
page_token: 翻页参数(第一页不用传,有下一页就会返回page_token参数)

响应参数

Version: Date:

名称 类型 必须 示例值 描述
items
items[] 0 按图搜索唯品会商品
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.onebound.cn/vip/item_search_img/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&imgid=/xupload.vip.com/38444a01-e842-49bc-99c7-5267f6d36628_1726122211035_tmp_search.jpg&page_token="
<?php

// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
$method = "GET";
$url = "https://api-gw.onebound.cn/vip/item_search_img/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&imgid=/xupload.vip.com/38444a01-e842-49bc-99c7-5267f6d36628_1726122211035_tmp_search.jpg&page_token=";
$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" =>"vip",
	                "api_name" =>"item_search_img",
	                "api_params"=>array (
  'imgid' => '/xupload.vip.com/38444a01-e842-49bc-99c7-5267f6d36628_1726122211035_tmp_search.jpg',
  'page_token' => '',
)
                )
            );
 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/vip/item_search_img/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&imgid=/xupload.vip.com/38444a01-e842-49bc-99c7-5267f6d36628_1726122211035_tmp_search.jpg&page_token=";
		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/vip/item_search_img/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&imgid=/xupload.vip.com/38444a01-e842-49bc-99c7-5267f6d36628_1726122211035_tmp_search.jpg&page_token=";
	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/vip/item_search_img/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&imgid=/xupload.vip.com/38444a01-e842-49bc-99c7-5267f6d36628_1726122211035_tmp_search.jpg&page_token="
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/vip/item_search_img/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&imgid=/xupload.vip.com/38444a01-e842-49bc-99c7-5267f6d36628_1726122211035_tmp_search.jpg&page_token=", 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/vip/item_search_img/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({"imgid":"\/xupload.vip.com\/38444a01-e842-49bc-99c7-5267f6d36628_1726122211035_tmp_search.jpg","page_token":""})// 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":"vip",
     "api_name" : "item_search_img",
     "api_params": {"imgid":"\/xupload.vip.com\/38444a01-e842-49bc-99c7-5267f6d36628_1726122211035_tmp_search.jpg","page_token":""}//imgid=/xupload.vip.com/38444a01-e842-49bc-99c7-5267f6d36628_1726122211035_tmp_search.jpg&page_token=,#具体参数请参考文档说明
     },
     function(e){
        document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
     }
);
</script>
require "net/http"
require "uri"
url = URI("https://api-gw.onebound.cn/vip/item_search_img/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&imgid=/xupload.vip.com/38444a01-e842-49bc-99c7-5267f6d36628_1726122211035_tmp_search.jpg&page_token=")
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/vip/item_search_img/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&imgid=/xupload.vip.com/38444a01-e842-49bc-99c7-5267f6d36628_1726122211035_tmp_search.jpg&page_token=")!
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/vip/item_search_img/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&imgid=/xupload.vip.com/38444a01-e842-49bc-99c7-5267f6d36628_1726122211035_tmp_search.jpg&page_token="];

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/vip/item_search_img/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&imgid=/xupload.vip.com/38444a01-e842-49bc-99c7-5267f6d36628_1726122211035_tmp_search.jpg&page_token=";
  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/vip/item_search_img/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&imgid=/xupload.vip.com/38444a01-e842-49bc-99c7-5267f6d36628_1726122211035_tmp_search.jpg&page_token=");
         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/vip/item_search_img/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&imgid=/xupload.vip.com/38444a01-e842-49bc-99c7-5267f6d36628_1726122211035_tmp_search.jpg&page_token=", (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/vip/item_search_img/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&imgid=/xupload.vip.com/38444a01-e842-49bc-99c7-5267f6d36628_1726122211035_tmp_search.jpg&page_token=")
    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/vip/item_search_img/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&imgid=/xupload.vip.com/38444a01-e842-49bc-99c7-5267f6d36628_1726122211035_tmp_search.jpg&page_token=")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

library(httr)
r <- GET("https://api-gw.onebound.cn/vip/item_search_img/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&imgid=/xupload.vip.com/38444a01-e842-49bc-99c7-5267f6d36628_1726122211035_tmp_search.jpg&page_token=")
content(r)
url = "https://api-gw.onebound.cn/vip/item_search_img/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&imgid=/xupload.vip.com/38444a01-e842-49bc-99c7-5267f6d36628_1726122211035_tmp_search.jpg&page_token=";
response = webread(url);
disp(response);
响应示例
{
        "items": {
          "item": [
            {
              "area": "",
              "detail_url": "https://detail.vip.com/detail-1710614812-6920347616300329372.html",
              "num_iid": "6920347616300329372",
              "pic_url": "http://d.vpimg1.com/upcb/gc000/2024/0307/104/ias_01a749f11b3191bfc60c9462c951be4f.jpg",
              "price": "498",
              "promotion_price": "64",
              "sales": 0,
              "seller_nick": "麦子熟了",
              "title": "夏季款中老年女装连帽外套妈妈装印花中长款上衣薄"
            },
            {
              "area": "",
              "detail_url": "https://detail.vip.com/detail-1711173829-6920438992162857669.html",
              "num_iid": "6920438992162857669",
              "pic_url": "https://a.vpimg2.com/upload/merchandise/pdcvop/00618114/10004019/1094910512-463666569154674688-463666569154674690-50_420_531.jpg",
              "price": "1587",
              "promotion_price": "242",
              "sales": 0,
              "seller_nick": "珂莱蒂尔",
              "title": "专柜同款印花简约出游通勤时尚长袖衬衫T恤上衣"
            },
            {
              "area": "",
              "detail_url": "https://detail.vip.com/detail-1711544282-6920860721122143706.html",
              "num_iid": "6920860721122143706",
              "pic_url": "http://c.vpimg1.com/upcb/gc000/2024/0614/123/ias_6304e0673494ac729317a26332806194.jpg",
              "price": "449",
              "promotion_price": "198",
              "sales": 0,
              "seller_nick": "ONLY",
              "title": "【时尚气质】2024秋季时尚气质质感翻领设计感拼接衬衫"
            },
            {
              "area": "",
              "detail_url": "https://detail.vip.com/detail-1710614894-6919924748719894862.html",
              "num_iid": "6919924748719894862",
              "pic_url": "http://c.vpimg1.com/upcb/gc000/2023/1116/4/ias_fe6c90116e852330a6403679d585f4ef.jpg",
              "price": "1395",
              "promotion_price": "345",
              "sales": 0,
              "seller_nick": "速写",
              "title": "江南布衣男装丨春休闲西服时尚宽松印花"
            },
            {
              "area": "",
              "detail_url": "https://detail.vip.com/detail-1710613701-6920774262326570053.html",
              "num_iid": "6920774262326570053",
              "pic_url": "https://a.vpimg2.com/upload/merchandise/pdcvis/655004/2024/0307/88/3e63ca91-3e4d-4bb0-ad3d-38eb58d48e30_420_531.jpg",
              "price": "509",
              "promotion_price": "107",
              "sales": 0,
              "seller_nick": "兔妈",
              "title": "孕妇装睡衣春季新款印花月子服孕期产后哺乳睡衣休闲喂奶家居套装"
            },
            {
              "area": "",
              "detail_url": "https://detail.vip.com/detail-1710615880-6920868578836686088.html",
              "num_iid": "6920868578836686088",
              "pic_url": "https://a.vpimg2.com/upload/merchandise/pdcvis/2024/07/06/14/a15f85a4-2a7e-42cc-a3b4-925607ac659e_420_531.jpg",
              "price": "419",
              "promotion_price": "94",
              "sales": 0,
              "seller_nick": "福玛玛",
              "title": "2024夏气质休闲洋气新中式国风竹叶印花女装衬衫中老年装"
            },
            {
              "area": "",
              "detail_url": "https://detail.vip.com/detail-1710613281-6920739422784421825.html",
              "num_iid": "6920739422784421825",
              "pic_url": "http://d.vpimg1.com/upcb/gc000/2024/0511/57/ias_71e199ee598816ba45f135ac9d0b189d.jpg",
              "price": "499",
              "promotion_price": "95",
              "sales": 0,
              "seller_nick": "德玛纳",
              "title": "【韩女速成班】春秋温柔清新木耳边V领印花衬衫气质褶裥衬衣"
            },
            {
              "area": "",
              "detail_url": "https://detail.vip.com/detail-1710615952-6919250664413816464.html",
              "num_iid": "6919250664413816464",
              "pic_url": "https://a.vpimg2.com/upload/merchandise/pdcvis/2021/03/30/49/3f36c46a-bf27-4e00-b3f9-4787ae460860_420_531.jpg",
              "price": "1290",
              "promotion_price": "387",
              "sales": 0,
              "seller_nick": "Lacoste",
              "title": "法国鳄鱼海岸风情  男装时尚休闲法式印花透气短袖衬衫男"
            },
            {
              "area": "",
              "detail_url": "https://detail.vip.com/detail-1711066540-6920908606570385932.html",
              "num_iid": "6920908606570385932",
              "pic_url": "http://d.vpimg1.com/upcb/gc000/2024/0520/153/ias_6f2deca9e7b69b950b1e84d0e8718063.jpg",
              "price": "249",
              "promotion_price": "59",
              "sales": 0,
              "seller_nick": "雪君",
              "title": "【透气T恤裙】2024夏中长连衣裙女宽松洋气印花圆领上衣"
            },
            {
              "area": "",
              "detail_url": "https://detail.vip.com/detail-1710614767-6920853989690249359.html",
              "num_iid": "6920853989690249359",
              "pic_url": "http://c.vpimg1.com/upcb/gc000/2024/0809/105/ias_c11043798f01e509b0a7a79e9f3340b0.jpg",
              "price": "2998",
              "promotion_price": "809",
              "sales": 0,
              "seller_nick": "黛玛诗",
              "title": "2024新款沙滩度假风长袖花衬衫文艺风设计宽松衬衣女"
            },
            {
              "area": "",
              "detail_url": "https://detail.vip.com/detail-1710614525-6919887137901214429.html",
              "num_iid": "6919887137901214429",
              "pic_url": "http://c.vpimg1.com/upcb/gc000/2023/1030/98/ias_d06c48bfb0ef3f4624e5999f34c1231e.jpg",
              "price": "2695",
              "promotion_price": "830",
              "sales": 0,
              "seller_nick": "LESS",
              "title": "江南布衣女装丨长袖立领舒适宽松连衣裙"
            },
            {
              "area": "",
              "detail_url": "https://detail.vip.com/detail-1711447110-6920507495554779782.html",
              "num_iid": "6920507495554779782",
              "pic_url": "http://d.vpimg1.com/upcb/gc000/2023/0819/191/ias_32f550dad428ce4a152f96aa46a1ca41.jpg",
              "price": "1090",
              "promotion_price": "948",
              "sales": 0,
              "seller_nick": "金·林德伯格",
              "title": "【GOLF系列】夏四面弹印花长袖打底衫女"
            }
          ],
          "page": 1,
          "page_count": "",
          "page_size": 12,
          "page_token": "eyJvZmZzZXQiOjEyLCJzaXplIjoxMiwiaWRzIjpbNjkyMDc5NDM5MTk5MjEwODY3OSw2OTIwODMwMzY0MDI5NTk2MTEzLDY5MjA2NTk0ODgwNjc2NjU1MDIsNjkyMDQ5NTUzMTcxODIzMjkwMSw2OTIwMTEzMDU4NTIzMTA0Mjc5LDY5MTk3NzI2MjkzNzU4MzgyOTQsNjkyMDc4MjY2Njc0NjM3MTAyOCw2OTIwMjY1MjYwNDIxNTU5NzQ3LDY5MjA3MjQ0OTcwMzUxMDE3NzQsNjkxOTkyNDc0Nzc0MjgxNDU0Miw2OTIwODY5NjI4MTMxMTI1NzI1LDY5MjA4ODg0NzY5NTUyMTgxOTQsNjkyMDQ5NDQ1NTY3MDMyMTIyMiw2OTIwNDU1Mjc2NDUwNDMzNzM0LDY5MjAxNjY1NzYyNjQyMDg4NTUsNjkyMDg5NDQ0NDU2NDc5NjYxNCw2OTIwODUyNTkxMDQ0MzM0ODU2LDY5MjAzOTI0NzEwNDk1NzE5NzEsNjkyMDg3OTYzMTc2Njc1NDQ1Nyw2OTIwMTEzMDU4NTIzMDkxOTkxLDY5MjAyNjk3MTQ3NzU1ODYxMzAsNjkyMDg1MDg4NzY5MTU2NzU1OSw2OTIwODM4ODUyNzkzNDM0NTY3LDY5MjAyNjIxMzg4NjU4NDY3OTMsNjkxOTc0NjE5OTAxMTY2MjE2OCw2OTIwODMwNjcyMDM3ODMzNDc3LDY5MjAyOTQwNDYwNzEyOTkxMzksNjkxOTc1MzI5MjExNDgxMzE0Nyw2OTIwODQ5MzYyNTQyNjQ5MjM2LDY5MjA4MTAzODAzMjc2MzU3MTcsNjkyMDQ4MjcwODM3MTU4ODU0OSw2OTIwOTA4ODAzODg5MzcwMzc2LDY5MjA4NDEwMDMyMjIzNjM2NjEsNjkyMDIyNDcwODUxODI0NjUzNiw2OTIwNzA3NTU2MzY4MTA5NzYwLDY5MTk5MzQ2NDM1NDYyOTQyMTksNjkxOTk3OTg4NDkzNjg2MzkzOCw2OTIwOTAwMjI4Nzg1MjM2NjcyLDY5MjA4MzE5ODE3MDc3ODk1ODMsNjkxOTQzMzM0MDY5MjU5OTk2MSw2OTIwOTY5NzE1NTc3MjY2NjM1LDY5MjA4NDA5NTE3OTg3Njc1MTQsNjkyMDI5NDA0NDE1ODIyMTQwNyw2OTIwMjYyMTM4ODY2MDM5MzA1LDY5MTk0NTg5OTQ4MTQzOTk0NDEsNjkyMDg2ODEwOTE3MTQzMjQ2Myw2OTIwNzc3MDgxOTA1MDQwMzIwLDY5MjA5MjE4MTI2NzQ5NTM2OTEsNjkyMDc0NjUzNzc5Nzc2NjUyOSw2OTE5Nzc2NTcyMzM2OTA0NzczLDY5MjA1MDg5NjQzMzY2OTQ5MTIsNjkyMDgxODczMjM5OTcxMDY3Myw2OTIwMDc4NDA5OTk0MjU0NTk1LDY5MjAyNjU0NTM3MzIxNjIyNjMsNjkyMDgzMDcxNjc5OTY5NDU0NSw2OTE5NjI2MTM3MTM4MTQ2MDAxLDY5MjA4Njk4NzEzMjc3Mzc0MjIsNjkyMDM2NjY4Njg4MDIxOTEwMyw2OTIwNzM3OTQ1MDIxMjY4MTA3LDY5MTk5OTU0NDI5MTA2ODYwODAsNjkyMDIyMTg4OTA4OTE3NzQzOCw2OTIwMjI0NzA4NTAxMjU2MzI4LDY5MjAzMjI5NDg5MTA3OTI3MTMsNjkyMDg3OTU3NDU3NTYyOTUwNSw2OTIwNzk4NjM5OTgwNjQyNzgzLDY5MjA4MDE3NDY0MzY2MDc4ODYsNjkyMDc4MjgyNzkzNzAwNzM2Niw2OTIwOTYxMDUzMjQ4NjEyOTMwLDY5MjA4ODg2MTU5Mjk5ODcyODEsNjkxOTc4NTYyNTAwNTM4NjY5Myw2OTIwNzUyMTIyNDkwMTk5NTExLDY5MjA4NTk3MDgzNzcyNzc1MTksNjkyMDk1MjQ2ODYxMDk0NzgwMSw2OTIwMDM2MjAzNTY0OTg4ODcyLDY5MjA3Mzc0NzQ5MjQ2MDE1NjUsNjkyMDgxODc5NDc2MTU3MjMwNiw2OTIwODMxOTM1MzU5NDg3MTgyLDY5MjA4NDA4MzA1NTk1MzA1NzEsNjkyMDM4MTI1OTc4Mjg5MDM3MCw2OTIwOTU1MjI3OTkwOTQ0ODU4LDY5MjAyOTU1OTc3NzcxNjEyMzYsNjkyMDc5MzAyMzk3OTgzOTgxMyw2OTIwMjUyNDA4NDkyMzc1MzYxLDY5MjA3NTgxNDExMDg5NzE1NDIsNjkxOTQyNzI4ODk2MjE3MjY3Nyw2OTE5OTA0MTEyNzMwMTc5NzI0LDY5MjAzOTU2MzI0ODM1MTEyMzYsNjkyMDI5NDI4MTM1MDAzMTE3OF19",
          "real_total_results": "",
          "total_results": "",
          "_ddf": "curry"
        },
        "error_code": "0000",
        "reason": "ok",
        "secache": "7121e90c7cd387372334ee11517d7e9a",
        "secache_time": 1726130632,
        "secache_date": "2024-09-12 16:43:52",
        "translate_status": "",
        "translate_time": 0,
        "language": {
          "default_lang": "cn",
          "current_lang": "cn"
        },
        "error": "",
        "cache": 0,
        "api_info": "today: max:15000 all[=++];expires:2031-01-01",
        "execution_time": "0.834",
        "server_time": "Beijing/2024-09-12 16:43:52",
        "client_ip": "127.0.0.1",
        "call_args": {
          "imgid": "/xupload.vip.com/38444a01-e842-49bc-99c7-5267f6d36628_1726122211035_tmp_search.jpg"
        },
        "api_type": "vip",
        "translate_language": "zh-CN",
        "translate_engine": "baidu",
        "server_memory": "3.03MB",
        "last_id": false
      }
异常示例
{
  "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(微信同号)