万邦衣联网根据关键词获取商品列表 API 返回值说明

item_search-根据关键词获取商品列表 [查看演示] API测试工具 注册开通

ylw.item_search

公共参数

请求地址: https://api-gw.onebound.cn/ylw/item_search

名称 类型 必须 描述
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=女装&page=1

参数说明:q:关键词,

响应参数

Version: Date:2023-12-24

名称 类型 必须 示例值 描述
items
items[] 0 按关键字搜索商品
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.onebound.cn/ylw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=1"
<?php

// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
$method = "GET";
$url = "https://api-gw.onebound.cn/ylw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=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" =>"ylw",
	                "api_name" =>"item_search",
	                "api_params"=>array (
  'q' => '女装',
  'page' => '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/ylw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=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/ylw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=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/ylw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=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/ylw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=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/ylw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({"q":"\u5973\u88c5","page":"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":"ylw",
     "api_name" : "item_search",
     "api_params": {"q":"\u5973\u88c5","page":"1"}//q=女装&page=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/ylw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=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/ylw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=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/ylw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=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/ylw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=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/ylw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=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/ylw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=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/ylw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=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/ylw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=1")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

library(httr)
r <- GET("https://api-gw.onebound.cn/ylw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=1")
content(r)
url = "https://api-gw.onebound.cn/ylw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=1";
response = webread(url);
disp(response);
响应示例
{
    "items":{
        "item":[
            {
                "detail_url":"https://www.eelly.com/goods/19662649.html",
                "num_iid":"19662649",
                "pic_url":"https://img.eelly.com/store430459/goods/20231216/1702716754624.jpeg?x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"82.00",
                "promotion_price":"82.00",
                "sales":0,
                "seller":"伊人丽影",
                "title":"【伊人丽影】2023冬新款女士棉衣棉服加绒加厚外套保暖小个子女装短款棉袄2594"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19663048.html",
                "num_iid":"19663048",
                "pic_url":"https://img.eelly.com/store/goods/20231221/1014925413071.jpg?t=1703145294&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"93.00",
                "promotion_price":"93.00",
                "sales":0,
                "seller":"千载服饰",
                "title":"2023年新款女装韩系小个子赫本风大衣中长款毛呢外套女秋冬季加厚"
            },
            {
                "detail_url":"https://www.eelly.com/goods/15542457.html",
                "num_iid":"15542457",
                "pic_url":"https://img.eelly.com/store/goods/20191113/6569057463751.jpg?t=1573647509&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"165.00",
                "promotion_price":"165.00",
                "sales":0,
                "seller":"绣之缘服饰旗舰店",
                "title":"毛呢外套女2023秋冬新款女装时尚羊羔毛拼接颗粒绒短款大衣"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19662932.html",
                "num_iid":"19662932",
                "pic_url":"https://img.eelly.com/store3823045/goods/20231220/8878387503071.jpg?t=1703057839&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"458.00",
                "promotion_price":"458.00",
                "sales":0,
                "seller":"MoMoCo",
                "title":"狐狸毛镶边装饰新中式大翻领小个子双面羊毛外套女式毛呢大衣新款"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19654744.html",
                "num_iid":"19654744",
                "pic_url":"https://img.eelly.com/store430459/goods/20230809/1691546674715.jpeg?x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"包邮",
                "promotion_price":"包邮",
                "sales":0,
                "seller":"伊人丽影",
                "title":"【伊人丽影】实拍碎花裙雪纺连衣裙长裙女秋长袖气质小众原创设计感女装5051"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19661018.html",
                "num_iid":"19661018",
                "pic_url":"https://img.eelly.com/store/goods/20231126/8344067890071.jpg?t=1700987605&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"70.00",
                "promotion_price":"70.00",
                "sales":0,
                "seller":"千载服饰",
                "title":"实拍-冬装仿华棉复合贝贝绒加绒加厚大码女装外套卫衣女"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19662933.html",
                "num_iid":"19662933",
                "pic_url":"https://img.eelly.com/store3823045/goods/20231220/2610918503071.jpg?t=1703058190&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"49.00",
                "promotion_price":"49.00",
                "sales":0,
                "seller":"MoMoCo",
                "title":"2023秋冬羊毛天丝圆领双面羊毛大衣 宽松单排扣女式外套厂家"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19661022.html",
                "num_iid":"19661022",
                "pic_url":"https://img.eelly.com/store/goods/20231126/3011718890071.jpg?t=1700988171&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"188.00",
                "promotion_price":"188.00",
                "sales":0,
                "seller":"千载服饰",
                "title":"仿华棉复贝贝绒假两件加绒加厚卫衣女大码胖mm女装上衣"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19656524.html",
                "num_iid":"19656524",
                "pic_url":"https://img.eelly.com/store430459/goods/20230912/1694512291226.jpeg?x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"包邮",
                "promotion_price":"包邮",
                "sales":0,
                "seller":"伊人丽影",
                "title":"【伊人丽影】韩版慵懒风新款秋冬季百搭上衣女装毛衣外套女针织开衫春秋外搭9447"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19662934.html",
                "num_iid":"19662934",
                "pic_url":"https://img.eelly.com/store3823045/goods/20231220/0937638503071.jpg?t=1703058367&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"60.00",
                "promotion_price":"60.00",
                "sales":0,
                "seller":"MoMoCo",
                "title":"2023新款浴袍连帽款气质通勤双面羊毛呢女士外套女士休闲羊毛大衣"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19662684.html",
                "num_iid":"19662684",
                "pic_url":"https://img.eelly.com/store/goods/20231217/4516008972071.jpg?t=1702798006&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"44.00",
                "promotion_price":"44.00",
                "sales":0,
                "seller":"千载服饰",
                "title":"黑色针织衫毛衣女厚外套爆款秋冬季2023新款女装小个子宽松上衣女"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19659535.html",
                "num_iid":"19659535",
                "pic_url":"https://img.eelly.com/store430459/goods/20231105/1699155589004.jpeg?x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"268.00",
                "promotion_price":"268.00",
                "sales":0,
                "seller":"伊人丽影",
                "title":"【伊人丽影】实拍欧货高级感磨毛衬衫女2023秋冬新款职业女装上衣叠穿打底衬衣7693"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19662935.html",
                "num_iid":"19662935",
                "pic_url":"https://img.eelly.com/store3823045/goods/20231220/4577678503071.jpg?t=1703058768&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"包邮",
                "promotion_price":"包邮",
                "sales":0,
                "seller":"MoMoCo",
                "title":"2023年美拉德高级感西装领卷袖双排扣系带双面羊毛大衣秋冬毛呢外套女 "
            },
            {
                "detail_url":"https://www.eelly.com/goods/19661020.html",
                "num_iid":"19661020",
                "pic_url":"https://img.eelly.com/store/goods/20231126/8419887890071.jpg?t=1700987889&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"59.00",
                "promotion_price":"59.00",
                "sales":0,
                "seller":"千载服饰",
                "title":"实拍-冬装仿华棉复合贝绒加绒加厚假两件卫衣女大码女装上衣"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19644997.html",
                "num_iid":"19644997",
                "pic_url":"https://img.eelly.com/store430459/goods/20221209/1670546688570.jpeg?x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"52.00",
                "promotion_price":"52.00",
                "sales":0,
                "seller":"伊人丽影",
                "title":"【伊人丽影】实拍今年爆款棉服女冬季新款中老年女装连帽夹棉外套休闲薄款棉衣1952"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19662941.html",
                "num_iid":"19662941",
                "pic_url":"https://img.eelly.com/store3823045/goods/20231220/5566310603071.jpg?t=1703060137&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"286.00",
                "promotion_price":"286.00",
                "sales":0,
                "seller":"MoMoCo",
                "title":"人气2023水波纹双面羊绒大衣女加长款 欧美浴袍款秋冬外套女"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19652809.html",
                "num_iid":"19652809",
                "pic_url":"https://img.eelly.com/store/goods/20230623/7162726057861.jpg?t=1687506272&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"包邮",
                "promotion_price":"包邮",
                "sales":0,
                "seller":"千载服饰",
                "title":"白色连衣裙2023新款女夏赫本风法式气质女装设计感小众长裙西装裙"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19656056.html",
                "num_iid":"19656056",
                "pic_url":"https://img.eelly.com/store430459/goods/20230904/1693824243861.jpeg?x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"45.00",
                "promotion_price":"45.00",
                "sales":0,
                "seller":"伊人丽影",
                "title":"【伊人丽影】春秋季新款女士短外套开衫中老年妈妈假两件女装洋气减龄2331"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19662973.html",
                "num_iid":"19662973",
                "pic_url":"https://img.eelly.com/store3823045/goods/20231220/0020693703071.jpg?t=1703073960&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"105.00",
                "promotion_price":"105.00",
                "sales":0,
                "seller":"MoMoCo",
                "title":"2023小香风秋款单排扣人气长毛羊毛双面羊绒大衣女式外套厂家批发 "
            },
            {
                "detail_url":"https://www.eelly.com/goods/19654184.html",
                "num_iid":"19654184",
                "pic_url":"https://img.eelly.com/store320985/goods/20230728/6040325740961.jpg?t=1690475230&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"368.00",
                "promotion_price":"368.00",
                "sales":0,
                "seller":"千载服饰",
                "title":"大码女装胖mm撞色翻领字母印花短袖上衣女夏季宽松百搭套头T恤衫 厂家直销"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19653295.html",
                "num_iid":"19653295",
                "pic_url":"https://img.eelly.com/store430459/goods/20230703/1688362684405.jpeg?x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"包邮",
                "promotion_price":"包邮",
                "sales":0,
                "seller":"伊人丽影",
                "title":"【伊人丽影】实拍天丝牛仔裤女夏季薄款高腰小个子直筒阔腿裤冰丝裤子新款女装B018"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19662937.html",
                "num_iid":"19662937",
                "pic_url":"https://img.eelly.com/store3823045/goods/20231220/2108909503071.jpg?t=1703059098&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"78.00",
                "promotion_price":"78.00",
                "sales":0,
                "seller":"MoMoCo",
                "title":"狐狸毛高级感气质双面羊毛外套毛呢大衣女秋冬新款毛毛秋冬新款"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19647606.html",
                "num_iid":"19647606",
                "pic_url":"https://img.eelly.com/store430459/goods/20230316/1678968862323.jpeg?x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"83.00",
                "promotion_price":"83.00",
                "sales":0,
                "seller":"伊人丽影",
                "title":"【伊人丽影】实拍女装爆款新款窄版阔腿裤女直筒宽松休闲长裤垂感显瘦高腰2368"
            },
            {
                "detail_url":"https://www.eelly.com/goods/13394833.html",
                "num_iid":"13394833",
                "pic_url":"https://img.eelly.com/store/goods/20190714/8322409903651.jpg?t=1563099042&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"368.00",
                "promotion_price":"368.00",
                "sales":0,
                "seller":"千载服饰",
                "title":"300斤特大码女装加肥加大胖妹妹韩版宽松短袖上衣女夏批发女式T恤"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19662938.html",
                "num_iid":"19662938",
                "pic_url":"https://img.eelly.com/store3823045/goods/20231220/5988029503071.jpg?t=1703059209&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"包邮",
                "promotion_price":"包邮",
                "sales":0,
                "seller":"MoMoCo",
                "title":"网红同款欧貂绒仿水貂皮大衣皮毛一体皮草外套女长款2023新款 "
            },
            {
                "detail_url":"https://www.eelly.com/goods/19653067.html",
                "num_iid":"19653067",
                "pic_url":"https://img.eelly.com/store430459/goods/20230627/1687861050095.jpeg?x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"43.00",
                "promotion_price":"43.00",
                "sales":0,
                "seller":"伊人丽影",
                "title":"【伊人丽影】实拍夏季女装窄版冰丝阔腿裤女高腰垂感显瘦休闲裤直筒凉凉防晒裤1313"
            },
            {
                "detail_url":"https://www.eelly.com/goods/13395495.html",
                "num_iid":"13395495",
                "pic_url":"https://img.eelly.com/store/goods/20190714/2911222013651.jpg?t=1563102221&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"67.00",
                "promotion_price":"67.00",
                "sales":0,
                "seller":"千载服饰",
                "title":"300斤大码女装200斤加肥加大胖妹妹2019新款宽松短袖女t恤上衣夏"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19662939.html",
                "num_iid":"19662939",
                "pic_url":"https://img.eelly.com/store3823045/goods/20231220/5027559503071.jpg?t=1703059557&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"459.00",
                "promotion_price":"459.00",
                "sales":0,
                "seller":"MoMoCo",
                "title":"cc同款新欧貂绒环保皮草雪球仿水貂毛毛大衣年轻中长款女宽松外套"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19648037.html",
                "num_iid":"19648037",
                "pic_url":"https://img.eelly.com/store/goods/20230322/1051563749761.jpg?t=1679473651&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"包邮",
                "promotion_price":"包邮",
                "sales":0,
                "seller":"千载服饰",
                "title":"实拍-夏季韩版2022新款大码女装中长款刺绣印花T恤女"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19649912.html",
                "num_iid":"19649912",
                "pic_url":"https://img.eelly.com/store430459/goods/20230421/1682063520470.jpeg?x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"57.00",
                "promotion_price":"57.00",
                "sales":0,
                "seller":"伊人丽影",
                "title":"【伊人丽影】实拍夏季新款女装 淑女套头V领短袖上衣衬衫女5795"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19649000.html",
                "num_iid":"19649000",
                "pic_url":"https://img.eelly.com/store/goods/20230405/6992207760861.jpg?t=1680677023&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"35.90",
                "promotion_price":"35.90",
                "sales":0,
                "seller":"千载服饰",
                "title":"实拍-夏季韩版2023新款大码女装中长款设计感涂鸦短袖t恤女"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19639651.html",
                "num_iid":"19639651",
                "pic_url":"https://img.eelly.com/store430459/goods/20220826/1661523393894.jpeg?x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"258.00",
                "promotion_price":"258.00",
                "sales":0,
                "seller":"伊人丽影",
                "title":"【伊人丽影】实拍新款女装法式优雅方领纯色裙子长袖连衣裙女6015"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19645897.html",
                "num_iid":"19645897",
                "pic_url":"https://img.eelly.com/store430459/goods/20230213/1676260874573.jpeg?x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"包邮",
                "promotion_price":"包邮",
                "sales":0,
                "seller":"伊人丽影",
                "title":"【伊人丽影】动套装女新款女装时尚卫衣两件套洋气妈妈减龄9015"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19649001.html",
                "num_iid":"19649001",
                "pic_url":"https://img.eelly.com/store/goods/20230405/8651717760861.jpg?t=1680677171&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"42.00",
                "promotion_price":"42.00",
                "sales":0,
                "seller":"千载服饰",
                "title":"实拍-夏季韩版宽松后包领爆款大码女装短袖上衣女"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19649020.html",
                "num_iid":"19649020",
                "pic_url":"https://img.eelly.com/store/goods/20230405/3316190860861.jpg?t=1680680916&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"35.90",
                "promotion_price":"35.90",
                "sales":0,
                "seller":"千载服饰",
                "title":"官图-夏季韩版宽松破洞无袖背心大码女装短袖上衣T恤女"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19647880.html",
                "num_iid":"19647880",
                "pic_url":"https://img.eelly.com/store430459/goods/20230320/1679279685233.jpg?x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"258.00",
                "promotion_price":"258.00",
                "sales":0,
                "seller":"伊人丽影",
                "title":"【伊人丽影】夏季女装新款高级感轻熟风御姐两件套女气质衬衫裤子套装港味9607"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19650569.html",
                "num_iid":"19650569",
                "pic_url":"https://img.eelly.com/store430459/goods/20230503/1683082133014.jpeg?x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"包邮",
                "promotion_price":"包邮",
                "sales":0,
                "seller":"伊人丽影",
                "title":"【伊人丽影】实拍女装抽褶v领碎花连衣裙女夏季新款法式泡泡短袖中长款裙子8037"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19649023.html",
                "num_iid":"19649023",
                "pic_url":"https://img.eelly.com/store/goods/20230405/9219066860861.jpg?t=1680686609&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"34.00",
                "promotion_price":"34.00",
                "sales":0,
                "seller":"千载服饰",
                "title":"官图-夏季100棉后包领纯棉polo领毛巾绣大码女装短袖t恤女"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19649544.html",
                "num_iid":"19649544",
                "pic_url":"https://img.eelly.com/store/goods/20230414/6512513741861.jpg?t=1681473152&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"49.00",
                "promotion_price":"49.00",
                "sales":0,
                "seller":"千载服饰",
                "title":"实拍-100%棉 后包领刺绣2023新款夏季韩版大码女装短袖t恤女"
            },
            {
                "detail_url":"https://www.eelly.com/goods/19648964.html",
                "num_iid":"19648964",
                "pic_url":"https://img.eelly.com/store/goods/20230404/7972358160861.jpg?t=1680618533&x-oss-process=image%2Fresize%2Cw_300%2Ch_300",
                "price":"28.00",
                "promotion_price":"28.00",
                "sales":0,
                "seller":"伊人丽影",
                "title":"【伊人丽影】新款女装时尚运动服夏季休闲运动套装女束脚裤跑步短袖两件套9041"
            }
        ],
        "page":"1",
        "page_size":40,
        "pagecount":174,
        "real_total_results":6936,
        "total_results":6936,
        "_ddf":"curry"
    },
    "error_code":"0000",
    "reason":"ok",
    "secache":"84af8e57a4e51b7a459e15a2d4f6c0ef",
    "secache_time":1703395951,
    "secache_date":"2023-12-24 13:32:31",
    "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":"1.964",
    "server_time":"Beijing/2023-12-24 13:32:31",
    "client_ip":"127.0.0.1",
    "call_args":{
        "q":"女装",
        "start_price":"1"
    },
    "api_type":"ylw",
    "server_memory":"3.04MB",
    "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/2023-12-15 17:44:00",
  "call_args": [],
  "api_type": "ylw",
  "request_id": "1ee0ffc041242"}
相关资料
错误码解释
状态代码(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(微信同号)