万邦搜款网商家商品列表 API 返回值说明

item_search_shop-商家商品列表 [查看演示] API测试工具 注册开通

vvic.item_search_shop

公共参数

请求地址: https://api-gw.onebound.cn/vvic/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版本
请求参数

请求参数:seller_nick=0&start_price=0&end_price=0&q=0&page=1&cid=&sort=&filter=sid:13304;merge:1

参数说明: cid:商品分类id(T恤:50000671,连衣裙:50010850) ; sort:综合(default),价格(递增:price-asc,递减:price-desc),上新时间(递增:up_time-asc,递减:up_time-desc),销量(递增:hot-asc,递减:hot-desc) ; price_start,price_end:价格区间 ; merge:参数为1时表示合并相似款。为0或者无时候表示显示相似款 filter:参数数组: sid:商铺号;merge:是否合并类似项 0不合并,1合并。

响应参数

Version: Date:

名称 类型 必须 示例值 描述
items
item[] 0 商家商品列表
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.onebound.cn/vvic/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&seller_nick=0&start_price=0&end_price=0&q=0&page=1&cid=&sort=&filter=sid:13304;merge:1"
<?php

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

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/vvic/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&seller_nick=0&start_price=0&end_price=0&q=0&page=1&cid=&sort=&filter=sid:13304;merge:1";
  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/vvic/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&seller_nick=0&start_price=0&end_price=0&q=0&page=1&cid=&sort=&filter=sid:13304;merge:1");
         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/vvic/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&seller_nick=0&start_price=0&end_price=0&q=0&page=1&cid=&sort=&filter=sid:13304;merge:1", (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/vvic/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&seller_nick=0&start_price=0&end_price=0&q=0&page=1&cid=&sort=&filter=sid:13304;merge:1")
    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/vvic/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&seller_nick=0&start_price=0&end_price=0&q=0&page=1&cid=&sort=&filter=sid:13304;merge:1")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

library(httr)
r <- GET("https://api-gw.onebound.cn/vvic/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&seller_nick=0&start_price=0&end_price=0&q=0&page=1&cid=&sort=&filter=sid:13304;merge:1")
content(r)
url = "https://api-gw.onebound.cn/vvic/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&seller_nick=0&start_price=0&end_price=0&q=0&page=1&cid=&sort=&filter=sid:13304;merge:1";
response = webread(url);
disp(response);
响应示例
{
	"user": [],
	"type": [],
	"items": {
		"item": [
			{
				"title": "实拍春季新款 设计感小众翻长袖衬衣女潮款衬衫",
				"num_iid": "6032a0a5c472530001c53990",
				"price": "42.00",
				"detail_url": "https://www.vvic.com/item/6032a0a5c472530001c53990",
				"pic_url": "//img1.vvic.com/upload/1613930222762_498215.jpg?x-oss-process=image/resize,mfit,h_400,w_400",
				"state": "03-10推荐",
				"hid": "8025#"
			},
			{
				"title": "实拍2021春季新款韩版bf风宽松显瘦宽条纹长袖衬衣女衬衫",
				"num_iid": "6032a300c472530001c539aa",
				"price": "39.00",
				"detail_url": "https://www.vvic.com/item/6032a300c472530001c539aa",
				"pic_url": "//img1.vvic.com/upload/1613931202448_537405.jpg?x-oss-process=image/resize,mfit,h_400,w_400",
				"state": "03-10推荐",
				"hid": "8035#"
			},
			{
				"title": "实拍2021春季短袖t恤女印花宽松半袖内搭打底上衣棉",
				"num_iid": "6032a8ed7f579400015ff224",
				"price": "29.00",
				"detail_url": "https://www.vvic.com/item/6032a8ed7f579400015ff224",
				"pic_url": "//img1.vvic.com/upload/1613932580283_649009.jpg?x-oss-process=image/resize,mfit,h_400,w_400",
				"state": "03-10推荐",
				"hid": "8955#"
			},
			{
				"title": "实拍 大量现货 春季新款 chic学生款双排扣衬衫 睡衣领格纹上衣",
				"num_iid": "6033cc0c7f57940001602db4",
				"price": "45.00",
				"detail_url": "https://www.vvic.com/item/6033cc0c7f57940001602db4",
				"pic_url": "//img.alicdn.com/bao/uploaded/i2/858179654/O1CN014u0bPk2LBaEKtVfsR_!!858179654.jpg_400x400.jpg",
				"state": "03-10推荐",
				"hid": "8780#"
			},
			{
				"title": "实拍法式娃娃领泡泡袖上衣女夏高腰短款衬衫设计感小众紫色",
				"num_iid": "6033cb82e4d8bc0001400a27",
				"price": "35.00",
				"detail_url": "https://www.vvic.com/item/6033cb82e4d8bc0001400a27",
				"pic_url": "//img.alicdn.com/bao/uploaded/i4/858179654/O1CN01UAZifl2LBaDq1iSge_!!858179654.jpg_400x400.jpg",
				"state": "03-10推荐",
				"hid": "8727#"
			},
			{
				"title": "实拍白色t恤纯棉夏季 港味chic百搭宽松大码半袖上衣",
				"num_iid": "6033e21bc472530001c57a03",
				"price": "28.00",
				"detail_url": "https://www.vvic.com/item/6033e21bc472530001c57a03",
				"pic_url": "//img1.vvic.com/upload/1614012760620_48637.jpg?x-oss-process=image/resize,mfit,h_400,w_400",
				"state": "03-10推荐",
				"hid": "8957#"
			},
			{
				"title": "实拍暗格纹小西装外套女2021新款春季休闲韩版宽松西服上衣",
				"num_iid": "60406dcac472530001c855cd",
				"price": "65.00",
				"detail_url": "https://www.vvic.com/item/60406dcac472530001c855cd",
				"pic_url": "//img1.vvic.com/upload/1614835136094_605659.jpg?x-oss-process=image/resize,mfit,h_400,w_400",
				"state": "03-10推荐",
				"hid": "9952#"
			},
			{
				"title": "实拍 2021夏季新学生款敲显白色系纯棉简约清新英文字母t短袖",
				"num_iid": "6041c928e4d8bc000143325b",
				"price": "25.00",
				"detail_url": "https://www.vvic.com/item/6041c928e4d8bc000143325b",
				"pic_url": "//img.alicdn.com/bao/uploaded/i1/858179654/O1CN01j5B00T2LBaD6rVqo3_!!858179654.jpg_400x400.jpg",
				"state": "03-10推荐",
				"hid": "8115#"
			},
			{
				"title": "实拍 裤子女2021新款夏韩版气质系带收腰显瘦工装连体裤",
				"num_iid": "6043ac61e4d8bc000143b93b",
				"price": "59.00",
				"detail_url": "https://www.vvic.com/item/6043ac61e4d8bc000143b93b",
				"pic_url": "//img.alicdn.com/bao/uploaded/i3/858179654/O1CN01sVu21N2LBaDvewmrB_!!858179654.jpg_400x400.jpg",
				"state": "03-10推荐",
				"hid": "08722#"
			},
			{
				"title": "实拍小众新款白色吊带连衣裙法国小众桔梗裙仙女裙chic女",
				"num_iid": "6043ad16c472530001c935bb",
				"price": "45.00",
				"detail_url": "https://www.vvic.com/item/6043ad16c472530001c935bb",
				"pic_url": "//img.alicdn.com/bao/uploaded/i3/858179654/O1CN01ry9TE62LBaERu1XbZ_!!858179654.jpg_400x400.jpg",
				"state": "03-10推荐",
				"hid": "02239#"
			},
			{
				"title": "实拍2021新立领蕾丝木耳花边拼接网纱袖百搭优雅衬衫",
				"num_iid": "6043ae6f7f5794000163d74b",
				"price": "49.00",
				"detail_url": "https://www.vvic.com/item/6043ae6f7f5794000163d74b",
				"pic_url": "//img1.vvic.com/upload/1615048071822_792899.jpg?x-oss-process=image/resize,mfit,h_400,w_400",
				"state": "03-08推荐",
				"hid": "8923#"
			},
			{
				"title": "实拍韩版复古宫廷蕾丝衬衫2021新款蕾丝刺绣喇叭袖气质打底衫女",
				"num_iid": "6043af417f5794000163d792",
				"price": "55.00",
				"detail_url": "https://www.vvic.com/item/6043af417f5794000163d792",
				"pic_url": "//img1.vvic.com/upload/1613494984725_225859.jpg?x-oss-process=image/resize,mfit,h_400,w_400",
				"state": "03-08推荐",
				"hid": "8924#"
			},
			{
				"title": "实拍 chic元气少女2021夏季甜美减龄泡泡袖娃娃裙宽松短袖连衣裙",
				"num_iid": "6048c8ec7f5794000165246a",
				"price": "45.00",
				"detail_url": "https://www.vvic.com/item/6048c8ec7f5794000165246a",
				"pic_url": "//img.alicdn.com/bao/uploaded/i1/858179654/O1CN01NDYqhd2LBaEbcNXyz_!!858179654.jpg_400x400.jpg",
				"state": "03-11上新",
				"hid": "8107#"
			},
			{
				"title": "实拍 实价 2021小众简约百搭chic半身裙女短裙高腰显瘦a字裙子",
				"num_iid": "6048c92fc472530001ca8aa5",
				"price": "27.00",
				"detail_url": "https://www.vvic.com/item/6048c92fc472530001ca8aa5",
				"pic_url": "//img.alicdn.com/bao/uploaded/i2/858179654/O1CN01elTLzj2LBaEU0YoDd_!!858179654.jpg_400x400.jpg",
				"state": "03-11上新",
				"hid": "1692#"
			}
		]
	},
	"url": "https://www.vvic.com/shop/13304?&amp;merge=1&amp;currentPage=1",
	"error": "",
	"reason": "",
	"error_code": "0000",
	"cache": 0,
	"api_info": "today:3 max:10000",
	"execution_time": 0.751,
	"server_time": "Beijing/2021-03-11 08:59:43",
	"client_ip": "106.6.35.144",
	"call_args": [],
	"api_type": "vvic",
	"translate_language": "zh-CN",
	"translate_engine": "baidu",
	"server_memory": "3.08MB",
	"request_id": "gw-4.60496b7e84820"
}
异常示例
{
  "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(微信同号)