凡邦速卖通按关键字搜索aliexpress商品 API 返回值说明

item_search-按关键字搜索aliexpress商品 [查看演示] API测试工具 注册开通

aliexpress.item_search

公共参数

请求地址: https://api-gw.fan-b.com/aliexpress/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=shoe&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=

参数说明:q:搜索关键字
cat:分类ID
start_price:开始价格
end_price:结束价格
sort:排序[bid,_bid,_sale,_new]
  (bid:总价,sale:销量,new上架时间,加_前缀为从大到小排序)
page:

响应参数

Version: Date:

名称 类型 必须 示例值 描述
items
items[] 0 按图搜索商品
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.fan-b.com/aliexpress/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=shoe&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath="
<?php

// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.fan-b.com/help/demo/sdk/demo-sign.php
$method = "GET";
$url = "https://api-gw.fan-b.com/aliexpress/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=shoe&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=";
$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.fan-b.com/help/demo/sdk/onebound-api-sdk.zip
include ("ObApiClient.php");

$obapi = new otao\ObApiClient();
$obapi->api_url = "http://api-gw.fan-b.com/";
$obapi->api_urls = array("http://api-gw.fan-b.com/","http://api-1.fan-b.com/");//备用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" =>"aliexpress",
	                "api_name" =>"item_search",
	                "api_params"=>array (
  'q' => 'shoe',
  'start_price' => '',
  'end_price' => '',
  'page' => '',
  'cat' => '',
  'discount_only' => '',
  'sort' => '',
  'page_size' => '',
  'seller_info' => '',
  'nick' => '',
  'ppath' => '',
)
                )
            );
 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.fan-b.com/aliexpress/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=shoe&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=";
		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.fan-b.com/aliexpress/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=shoe&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=";
	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.fan-b.com/aliexpress/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=shoe&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath="
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.fan-b.com/aliexpress/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=shoe&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=", 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.fan-b.com/aliexpress/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({"q":"shoe","start_price":"","end_price":"","page":"","cat":"","discount_only":"","sort":"","page_size":"","seller_info":"","nick":"","ppath":""})// 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.fan-b.com", // 
    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":"aliexpress",
     "api_name" : "item_search",
     "api_params": {"q":"shoe","start_price":"","end_price":"","page":"","cat":"","discount_only":"","sort":"","page_size":"","seller_info":"","nick":"","ppath":""}//q=shoe&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=,#具体参数请参考文档说明
     },
     function(e){
        document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
     }
);
</script>
require "net/http"
require "uri"
url = URI("https://api-gw.fan-b.com/aliexpress/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=shoe&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=")
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.fan-b.com/aliexpress/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=shoe&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=")!
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.fan-b.com/aliexpress/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=shoe&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath="];

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.fan-b.com/aliexpress/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=shoe&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=";
  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.fan-b.com/aliexpress/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=shoe&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=");
         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.fan-b.com/aliexpress/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=shoe&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=", (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.fan-b.com/aliexpress/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=shoe&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=")
    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.fan-b.com/aliexpress/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=shoe&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

library(httr)
r <- GET("https://api-gw.fan-b.com/aliexpress/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=shoe&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=")
content(r)
url = "https://api-gw.fan-b.com/aliexpress/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=shoe&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=";
response = webread(url);
disp(response);
响应示例
{
  "items": {
    "page": 1,
    "real_total_results": 904196,
    "total_results": 904196,
    "page_size": 60,
    "pagecount": 15070,
    "item": [
      {
        "title": "メンズ軽量ランニングシューズ,滑り止めスニーカー,通気性テニスシューズ,アウトドアスポーツ,ウォーキング,登山,ハイキング",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/Sf597ce176030468abb9f99e21aa8e310C/Men-Running-Shoes-Lightweight-Sneakers-Breathable-Tennis-Shoe-Non-Slip-Sports-Outdoor-Casual-Walking-Footwear-Climbing.jpg_350x350xz.jpg",
        "price": 4.57,
        "num_iid": "3256806910842525",
        "seller_nick": "Stone's Store",
        "shop_id": 1103576287,
        "detail_url": "https://www.aliexpress.com/item/3256806910842525.html"
      },
      {
        "title": "男性と女性のための通気性のあるスニーカー,快適なカジュアルシューズ,クラシックなプラットフォーム,レースアップスニーカー",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S8c369649498a4bccaec5f0737a69173fQ/Men-Sneakers-Breathable-Running-Shoes-for-Men-Comfortable-Classic-Casual-Sports-Shoes-Man-Tenis-Masculino-Women.jpg_350x350xz.jpg",
        "price": 4.17,
        "num_iid": "3256806874165974",
        "seller_nick": "Stone's Store",
        "shop_id": 1103576287,
        "detail_url": "https://www.aliexpress.com/item/3256806874165974.html"
      },
      {
        "title": "女性のカジュアルで通気性のあるスポーツシューズ,快適なスニーカー,ランニング,ウォーキング,夏",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/Se348141928ed4b04a8105503872d16a5l/Women-Vulcanized-Shoes-Sneakers-Lightweight-Summer-Woman-Casual-Sports-Shoes-Breathable-Jogging-Trainers-Walking-Tenis-Shoes.jpg_350x350xz.jpg",
        "price": 4.98,
        "num_iid": "3256806828294443",
        "seller_nick": "Stone's Store",
        "shop_id": 1103576287,
        "detail_url": "https://www.aliexpress.com/item/3256806828294443.html"
      },
      {
        "title": "男性用のクラシックで通気性のあるランニングシューズ,軽量で快適なメッシュシューズ,ウォーキングやテニスに最適",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S28a4abbc6b044f5bbadbd132b3438a22e/Men-Shoes-Breathable-Classic-Running-Sneakers-for-Man-Outdoor-Light-Comfortable-Mesh-Shoes-Slip-on-Walking.jpg_350x350xz.jpg",
        "price": 6.04,
        "num_iid": "3256806596847265",
        "seller_nick": "Stone's Store",
        "shop_id": 1103576287,
        "detail_url": "https://www.aliexpress.com/item/3256806596847265.html"
      },
      {
        "title": "女性用加硫ランニングシューズ,風通しの良いウォーキングスニーカー,フラット,ジムで加硫,白,2021コレクション",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/Hbaddcbce75504984a7c5f169650fddd6B/Women-Casual-Shoes-Fashion-Breathable-Walking-Mesh-Flat-Shoes-Sneakers-Women-2021-Gym-Vulcanized-Shoes-White.jpg_350x350xz.jpg",
        "price": 7.99,
        "num_iid": "3256806808391478",
        "seller_nick": "Stone's Store",
        "shop_id": 1103576287,
        "detail_url": "https://www.aliexpress.com/item/3256806808391478.html"
      },
      {
        "title": "男性用の軽くて風通しの良いアウトドアスニーカー,スポーツ,ランニング,テニス,アウトドア,白と黒のメッシュスニーカー",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S71d0245609ae4a4682e56cc7248982dcg/Men-Casual-Sport-Shoes-Light-Sneakers-White-Outdoor-Breathable-Mesh-Black-Running-Shoes-Athletic-Jogging-Tennis.jpg_350x350xz.jpg",
        "price": 11.99,
        "num_iid": "3256806910545921",
        "seller_nick": "Stone's Store",
        "shop_id": 1103576287,
        "detail_url": "https://www.aliexpress.com/item/3256806910545921.html"
      },
      {
        "title": "女性用加硫ランニングシューズ,風通しの良いウォーキングスニーカー,フラット,ジムで加硫,白,2021コレクション",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/Hbaddcbce75504984a7c5f169650fddd6B/Women-Casual-Shoes-Fashion-Breathable-Walking-Mesh-Flat-Shoes-Sneakers-Women-2021-Gym-Vulcanized-Shoes-White.jpg_350x350xz.jpg",
        "price": 6.99,
        "num_iid": "3256804987482240",
        "seller_nick": "LIZUShoe Store",
        "shop_id": 1102597212,
        "detail_url": "https://www.aliexpress.com/item/3256804987482240.html"
      },
      {
        "title": "男女兼用ファッションビーチサンダル男性滑り止め厚底スリッパ軽量夏フリップフロップガーデンシューズ男性女性",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/Sce47036892e54e41bf52bd2f3c88ed4eb/Unisex-Fashion-Beach-Sandals-Men-Anti-Slip-Thick-Sole-Slippers-Lightweight-Summer-Flip-Flops-Garden-Shoes.jpg_350x350xz.jpg",
        "price": 5.99,
        "num_iid": "3256805202226866",
        "seller_nick": "LCG Sports Casual Shoes Store",
        "shop_id": 1103840508,
        "detail_url": "https://www.aliexpress.com/item/3256805202226866.html"
      },
      {
        "title": "男性と女性のためのソフトソールの屋内スリッパ,家庭用の軽量ビーチシューズ,大型サイズ47,夏",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S7cc737f820d14266a7924b01815ad7c1R/Big-Size-47-Summer-Slippers-Men-Women-EVA-Soft-Bottom-Indoor-Home-Slides-Sandals-Light-Beach.jpg_350x350xz.jpg",
        "price": 5.79,
        "num_iid": "3256805969458837",
        "seller_nick": "Indestructible Shoes Store",
        "shop_id": 1103017003,
        "detail_url": "https://www.aliexpress.com/item/3256805969458837.html"
      },
      {
        "title": "男性用の通気性のあるスニーカー,テニス,クラシック,カジュアル,アウトドア,快適,メッシュ,新しいコレクション2022",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/Sd0d60177db484618b7992ec128df16b00/Men-Sneakers-Breathable-Classic-Casual-Shoes-Man-Tennis-Sneakers-2024-New-in-Outdoor-Comfortable-Mesh-Men.jpg_350x350xz.jpg",
        "price": 3.53,
        "num_iid": "3256806910879570",
        "seller_nick": "Stone's Store",
        "shop_id": 1103576287,
        "detail_url": "https://www.aliexpress.com/item/3256806910879570.html"
      },
      {
        "title": "男性用のクラシックで通気性のあるランニングシューズ,軽量の快適なメッシュスニーカー,滑り止め,カジュアル,ウォーキング,テニス",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/Sba1d89a0fce14b49be36eb32b8cd3fa0T/Men-Shoes-Breathable-Classic-Running-Sneakers-For-Man-Outdoor-Light-Comfortable-Mesh-Shoes-Slip-On-Casaul.jpg_350x350xz.jpg",
        "price": 8.68,
        "num_iid": "3256806810046009",
        "seller_nick": "Stone's Store",
        "shop_id": 1103576287,
        "detail_url": "https://www.aliexpress.com/item/3256806810046009.html"
      },
      {
        "title": "男性用カジュアルスポーツシューズ通気性軽量スニーカー屋外メッシュ黒ランニングシューズ運動ジョギングテニスウォーキングシューズ",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/Sd31a7cfe3f42448da7dadd335e74b6600/Men-Casual-Sport-Shoes-Breathable-Lightweight-Sneakers-Outdoor-Mesh-Black-Running-Shoes-Athletic-Jogging-Tenis-Walking.jpg_350x350xz.jpg",
        "price": 10.99,
        "num_iid": "3256805885623383",
        "seller_nick": "BIG RUNNING Factory Dropshipping Official Store",
        "shop_id": 1102526079,
        "detail_url": "https://www.aliexpress.com/item/3256805885623383.html"
      },
      {
        "title": "女性のための加硫スニーカー,高品質のスニーカー,ウォーキングプラットフォーム,大型,ファッショナブル",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/Sa16d3a0354c44593940c0bbd36b8c46d8/Women-Sneakers-Shoes-Fashion-WomenVulcanizedShoes-HighQuality-FlatsShoes-WomenWalking-Blatform-Plus-Size-Zapatillas-Mujer.jpg_350x350xz.jpg",
        "price": 8.99,
        "num_iid": "3256806541167239",
        "seller_nick": "Stone's Store",
        "shop_id": 1103576287,
        "detail_url": "https://www.aliexpress.com/item/3256806541167239.html"
      },
      {
        "title": "女性のための快適で通気性のあるフラットシューズ,軽量で滑りにくいカジュアルシューズ,ファッショナブル,新しい春",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S0614fa0b26804ca89a4021b1e8267c36L/Spring-new-women-s-sports-shoes-fashionable-breathable-lightweight-non-slip-wear-resistant-casual-sports-shoes.jpg_350x350xz.jpg",
        "price": 2.78,
        "num_iid": "3256806984651935",
        "seller_nick": "Stone's Store",
        "shop_id": 1103576287,
        "detail_url": "https://www.aliexpress.com/item/3256806984651935.html"
      },
      {
        "title": "男性用スニーカー夏メッシュランニングシューズ軽量で通気性のある男性用スニーカー",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S3e3886c8e68c44a89d292119486313d3Z/Men-Sneakers-Summer-Mesh-Running-Shoes-Lightweight-and-Breathable-Sneakers-For-Men.jpg_350x350xz.jpg",
        "price": 7.99,
        "num_iid": "3256805458396755",
        "seller_nick": "SNEAKERS Store",
        "shop_id": 1103773121,
        "detail_url": "https://www.aliexpress.com/item/3256805458396755.html"
      },
      {
        "title": "男性用の通気性のある作業用安全靴,滑り止めのスポーツシューズ,快適なEVAインソール,ラバーアッパー,トレンディ,新しい,春",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S03e0fecd31644c0698dadc4f6a85532fF/Spring-Men-s-Shoes-New-Breathable-Work-Safety-Shoes-Trendy-Versatile-Non-slip-Sports-Comfortable-Eva.jpg_350x350xz.jpg",
        "price": 0.99,
        "num_iid": "3256807247111818",
        "seller_nick": "Shop1103331158 Store",
        "shop_id": 1103322768,
        "detail_url": "https://www.aliexpress.com/item/3256807247111818.html"
      },
      {
        "title": "男性と女性のためのソイルソールの通気性のある靴,レトロなステッチ,マフィンボトム,プラスサイズ,シングル,春と夏,新しいコレクション2022",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S0f750b666ebc46aa8049dc4b70b51c1dP/Spring-and-Summer-2024-Newsoft-soled-Roman-Breathable-Retro-Stitching-Muffin-Bottom-plus-Size-WOMEN-S.jpg_350x350xz.jpg",
        "price": 8.99,
        "num_iid": "3256806808847159",
        "seller_nick": "Stone's Store",
        "shop_id": 1103576287,
        "detail_url": "https://www.aliexpress.com/item/3256806808847159.html"
      },
      {
        "title": "男性と女性のための通気性のあるランニングシューズ、快適なスニーカー、メッシュテニススポーツシューズ、アウトドアエアウォーキング、カジュアル",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S364ac8087872498fac2587edc4b81c68i/Men-Shoes-Comfortable-Sneakers-Breathable-Running-Shoes-For-Women-Mesh-Tennis-Sports-Shoes-Outdoor-Air-Waling.jpg_350x350xz.jpg",
        "price": 4.99,
        "num_iid": "3256806596801259",
        "seller_nick": "Stone's Store",
        "shop_id": 1103576287,
        "detail_url": "https://www.aliexpress.com/item/3256806596801259.html"
      },
      {
        "title": "女性用の柔らかく快適なスリッポンモカシン,軽量スニーカー,ウォーキングシューズ,怠惰",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/Sb1622192ad86447d9d7a6cad75541a480/Women-Shoes-Soft-Women-Sneakers-Lightweight-And-Comfortable-Women-Slip-On-Lazy-Loafers-Walking-Shoes-For.jpg_350x350xz.jpg",
        "price": 1.3,
        "num_iid": "3256806677390071",
        "seller_nick": "Stone's Store",
        "shop_id": 1103576287,
        "detail_url": "https://www.aliexpress.com/item/3256806677390071.html"
      },
      {
        "title": "女性のカジュアルなビーチサンダル,フラットソール,麻縄,外側,すべてにマッチ,大きいサイズ,夏,2023",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S598a7b6a90c84733a7b776e0a4995e2aE/2023-Summer-Flat-Women-s-Shoes-Hemp-Rope-Set-Foot-Beach-Sandals-Outdoor-All-match-Casual.jpg_350x350xz.jpg",
        "price": 5.99,
        "num_iid": "3256807353725354",
        "seller_nick": "Stone's Store",
        "shop_id": 1103576287,
        "detail_url": "https://www.aliexpress.com/item/3256807353725354.html"
      },
      {
        "title": "男性と女性のためのスエードスリッパ,クローグ,コルクソールのサンダル,アーチサポート,アウトドアビーチのスライド,ホームシューズ,ファッション",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S45498862133b44f3b00c40a430ea5fc1t/Comwarm-Fashion-Women-s-Suede-Mules-Slippers-Men-Clogs-Cork-Insole-Sandals-With-Arch-Support-Outdoor.jpg_350x350xz.jpg",
        "price": 11.39,
        "num_iid": "3256805385690685",
        "seller_nick": "Comwarm Slippers Official Store",
        "shop_id": 1102093009,
        "detail_url": "https://www.aliexpress.com/item/3256805385690685.html"
      },
      {
        "title": "男性用ランニングシューズレースアップ男性用スポーツシューズ軽量快適通気性ウォーキングスニーカーtenis masculino zapatillas hombre",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/Sb161c36032f24152bc5d1e4dc983ee2a5/Men-Running-Shoes-Lace-up-Men-Sport-Shoes-Lightweight-Comfortable-Breathable-Walking-Sneakers-Tenis-Masculino-Zapatillas.jpg_350x350xz.jpg",
        "price": 8.99,
        "num_iid": "3256806598317381",
        "seller_nick": "Stone's Store",
        "shop_id": 1103576287,
        "detail_url": "https://www.aliexpress.com/item/3256806598317381.html"
      },
      {
        "title": "メンズ通気性ランニングシューズ,カジュアルスニーカー,ソフトボトム,エアクッション,トレンディ,新品,春と秋",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S71cbb8defa134034b3988de6f38e7fb13/Men-s-Running-Shoes-Air-Cushion-Men-s-Spring-and-Autumn-New-Trendy-Breathable-Soft-Bottom.jpg_350x350xz.jpg",
        "price": 3.23,
        "num_iid": "3256807259722145",
        "seller_nick": "Heartthrob Square Store",
        "shop_id": 1103731380,
        "detail_url": "https://www.aliexpress.com/item/3256807259722145.html"
      },
      {
        "title": "女性用カジュアルシューズファッション通気性のあるウォーキングメッシュフラットシュースニーカー白",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S788fc3ff849446d6afe09fad071677a1L/Women-Casual-Shoes-Fashion-Breathable-Walking-Mesh-FlatShoesSneakers-White-Female-Footwear.jpg_350x350xz.jpg",
        "price": 6.99,
        "num_iid": "3256805746532543",
        "seller_nick": "LIZUShoe Store",
        "shop_id": 1102597212,
        "detail_url": "https://www.aliexpress.com/item/3256805746532543.html"
      },
      {
        "title": "メンズ本革サンダル,カジュアルアウトドアシューズ,ビーチシューズ,ラージサイズ38-48",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/Sdb6265c21e9046adb49045495f586e42g/Summer-Men-Sandals-Genuine-Leather-Mens-Casual-Shoes-Outdoor-Men-Leather-Sandals-for-Men-Beach-Shoes.jpg_350x350xz.jpg",
        "price": 11.19,
        "num_iid": "3256805742878099",
        "seller_nick": "JKPUDUN Footwear Store",
        "shop_id": 1102551062,
        "detail_url": "https://www.aliexpress.com/item/3256805742878099.html"
      },
      {
        "title": "メンズ軽量デオドラントシューズ、通気性メッシュスニーカー、快適、トレンディ、用途の広い、春",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S8d10363a8c9d4c619edb64c70f1d6270p/Spring-Lightweight-Deodorant-Men-s-Shoes-Breathable-Mesh-Sneakers-Comfortable-Trendy-Versatile-Shoes-Men.jpg_350x350xz.jpg",
        "price": 2.37,
        "num_iid": "3256807136090042",
        "seller_nick": "Shop1103314857 Store",
        "shop_id": 1103310867,
        "detail_url": "https://www.aliexpress.com/item/3256807136090042.html"
      },
      {
        "title": "メンズ通気性メッシュスポーツシューズ,快適,ファッショナブル,多用途,レジャー,カジュアル,新品",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S7b4bdb738baf40729b3ac4fbed5b5d34l/New-casual-men-s-shoes-breathable-mesh-sports-men-s-shoes-comfortable-fashionable-and-versatile-men.jpg_350x350xz.jpg",
        "price": 0.99,
        "num_iid": "3256807278942672",
        "seller_nick": "Shop1103314998 Store",
        "shop_id": 1103320680,
        "detail_url": "https://www.aliexpress.com/item/3256807278942672.html"
      },
      {
        "title": "女性のカジュアルなビーチサンダル,フラットソール,麻縄,外側,すべてにマッチ,大きいサイズ,夏,2023",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S598a7b6a90c84733a7b776e0a4995e2aE/2023-Summer-Flat-Women-s-Shoes-Hemp-Rope-Set-Foot-Beach-Sandals-Outdoor-All-match-Casual.jpg_350x350xz.jpg",
        "price": 5.99,
        "num_iid": "3256806037301421",
        "seller_nick": "Shop1102823632 Store",
        "shop_id": 1102821601,
        "detail_url": "https://www.aliexpress.com/item/3256806037301421.html"
      },
      {
        "title": "Onemix-男性と女性のための滑り止めランニングシューズ,パッド入りのスポーツシューズ,屋外のスポーツシューズ,重いランナーに適しています,新しい",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S9bff2e2fb1134f6b911801d85ae236c3H/ONEMIX-New-Cushioning-Running-Shoes-For-Men-Suitable-Heavy-Runners-Lace-Up-Sports-Women-Non-slip.jpg_350x350xz.jpg",
        "price": 44.45,
        "num_iid": "3256806808338137",
        "seller_nick": "Stone's Store",
        "shop_id": 1103576287,
        "detail_url": "https://www.aliexpress.com/item/3256806808338137.html"
      },
      {
        "title": "男性と女性のための通気性のあるランニングシューズ,カジュアルで快適なユニセックススニーカー",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/Sd40e682066cf4dd5adadc13453736df13/Sneakers-Women-Breathable-Fashion-Running-Shoes-Comfortable-Casual-Shoes-Unisex-Men-Tenis-Masculino-Lightweiht-Sports-Shoes.jpg_350x350xz.jpg",
        "price": 6.05,
        "num_iid": "3256805718990640",
        "seller_nick": "BIG RUNNING Factory Dropshipping Official Store",
        "shop_id": 1102526079,
        "detail_url": "https://www.aliexpress.com/item/3256805718990640.html"
      },
      {
        "title": "男性と女性のための柔らかい屋内スリッパ,滑り止めのバスサンダル,家庭用スリッパ,ホテルのビーチサンダル,フラットシューズ,無地,夏",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S30f7f8f7bb43490f96590d742ba42bd5K/Soft-Home-Slippers-Couple-Summer-Indoor-Skid-Proof-Bathroom-Slippers-Sandals-Hotel-Solid-Color-Men-Women.jpg_350x350xz.jpg",
        "price": 2.12,
        "num_iid": "3256806736526450",
        "seller_nick": "FUNselected Store",
        "shop_id": 1103677359,
        "detail_url": "https://www.aliexpress.com/item/3256806736526450.html"
      },
      {
        "title": "男性用の軽くて風通しの良いアウトドアスニーカー,スポーツ,ランニング,テニス,アウトドア,白と黒のメッシュスニーカー",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S4c93e29a98ae48e6b858785e12d9fe51G/Men-Casual-Sport-Shoes-Light-Sneakers-White-Outdoor-Breathable-Mesh-Black-Running-Shoes-Athletic-Jogging-Tennis.jpg_350x350xz.jpg",
        "price": 11.99,
        "num_iid": "3256804945308056",
        "seller_nick": "Damyuan Store",
        "shop_id": 1102512548,
        "detail_url": "https://www.aliexpress.com/item/3256804945308056.html"
      },
      {
        "title": "男性と女性のためのソイルソールの通気性のある靴,レトロなステッチ,マフィンボトム,プラスサイズ,シングル,春と夏,新しいコレクション2022",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S0f750b666ebc46aa8049dc4b70b51c1dP/Spring-and-Summer-2024-Newsoft-soled-Roman-Breathable-Retro-Stitching-Muffin-Bottom-plus-Size-WOMEN-S.jpg_350x350xz.jpg",
        "price": 8.99,
        "num_iid": "3256806467634156",
        "seller_nick": "Shop1103837701 Store",
        "shop_id": 1103838752,
        "detail_url": "https://www.aliexpress.com/item/3256806467634156.html"
      },
      {
        "title": "Onemix男性用の新しいクッション性のランニングシューズ適切な重いランナーレースアップスポーツ女性滑り止め屋外運動男性用スニーカー",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/Sb79d1d4b52c543cfb7934a6a2b9cfbc1q/ONEMIX-New-Cushioning-Running-Shoes-For-Men-Suitable-Heavy-Runners-Lace-Up-Sports-Women-Non-slip.jpg_350x350xz.jpg",
        "price": 43.48,
        "num_iid": "3256806718446444",
        "seller_nick": "Stone's Store",
        "shop_id": 1103576287,
        "detail_url": "https://www.aliexpress.com/item/3256806718446444.html"
      },
      {
        "title": "男性と女性のための漫画のサメのスリッパ,屋内のバスルームのスライド,カップルのファッション,フラットシューズ,サンダル,柔らかいエヴァ,ビーチサンダル,夏",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S088565ac293f4a21860ce18f0cf10417P/Women-Cartoon-Shark-Slippers-Men-Indoor-Bathroom-Slides-Summer-Couple-Fashion-Flat-Shoes-Sandals-Kids-Soft.jpg_350x350xz.jpg",
        "price": 0.99,
        "num_iid": "3256807263012791",
        "seller_nick": "Shop1103331158 Store",
        "shop_id": 1103322768,
        "detail_url": "https://www.aliexpress.com/item/3256807263012791.html"
      },
      {
        "title": "メンズカジュアルスポーツシューズ,通気性のあるアウトドアスニーカー,快適なウォーキングシューズ,ファッショナブル,夏",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/Sb395d0c260e14b989b70f9ea3d96e109K/Shoes-for-Men-s-Casual-Sports-Shoes-Fashion-Breathable-Outdoor-Running-Sneakers-Comfortable-Summer-Walking-Shoes.jpg_350x350xz.jpg",
        "price": 11.99,
        "num_iid": "3256806873721873",
        "seller_nick": "BIG RUNNING Factory Dropshipping Official Store",
        "shop_id": 1102526079,
        "detail_url": "https://www.aliexpress.com/item/3256806873721873.html"
      },
      {
        "title": "コンバーススタイルのスニーカー,女性用フラットシューズ,高品質のスニーカー,大型42",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/H4b6bfb8b973c49079f9c3189ddde1a778/Women-Vulcanized-Shoes-High-Quality-Women-Sneakers-Slip-On-Flats-Shoes-Women-Loafers-Plus-Size-42.jpg_350x350xz.jpg",
        "price": 6.99,
        "num_iid": "3256804987508863",
        "seller_nick": "LIZUShoe Store",
        "shop_id": 1102597212,
        "detail_url": "https://www.aliexpress.com/item/3256804987508863.html"
      },
      {
        "title": "男性用の軽くて風通しの良いアウトドアスニーカー,スポーツ,ランニング,テニス,アウトドア,白と黒のメッシュスニーカー",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S71d0245609ae4a4682e56cc7248982dcg/Men-Casual-Sport-Shoes-Light-Sneakers-White-Outdoor-Breathable-Mesh-Black-Running-Shoes-Athletic-Jogging-Tennis.jpg_350x350xz.jpg",
        "price": 7.36,
        "num_iid": "3256805422552935",
        "seller_nick": "Damyuan Store",
        "shop_id": 1102512548,
        "detail_url": "https://www.aliexpress.com/item/3256805422552935.html"
      },
      {
        "title": "男性用ソフトソールのマッサージスリッパ,屋内と屋外のサンダル,カジュアルなビーチシューズ,夏のビーチサンダル,新しいコレクション",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S48b3663eb43847f4aa6f0ddeedf0616eT/New-Summer-Men-Massage-Slippers-Sides-Indoor-Outdoor-Sandals-Beach-Casual-Shoes-Soft-Sole-Slides-Men.jpg_350x350xz.jpg",
        "price": 7.99,
        "num_iid": "3256806872437659",
        "seller_nick": "GSENEN Store",
        "shop_id": 1103771190,
        "detail_url": "https://www.aliexpress.com/item/3256806872437659.html"
      },
      {
        "title": "Aiyuqi-女性用レトロ本革スニーカー,トレーニングシューズ,カジュアルフラットシューズ,コントラスト,春,2022",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/Se28532aea7d44845adc60d29114a8343V/AIYUQI-Women-Sneakers-2024-Spring-New-Genuine-Leather-Retro-German-Training-Shoes-Women-Contrast-Flat-Casual.jpg_350x350xz.jpg",
        "price": 38.58,
        "num_iid": "3256806473545953",
        "seller_nick": "AIYUQI Official Store",
        "shop_id": 1100610675,
        "detail_url": "https://www.aliexpress.com/item/3256806473545953.html"
      },
      {
        "title": "男性用の通気性と軽量のランニングシューズ、10代の若者向けの万能スニーカー",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S110be0e9804647539e52f5df662878ff9/Lightweight-Breathable-Running-Shoes-for-Men-All-Purpose-Sneakers-for-Teens.jpg_350x350xz.jpg",
        "price": 0.99,
        "num_iid": "3256807253047862",
        "seller_nick": "Shop1103331158 Store",
        "shop_id": 1103322768,
        "detail_url": "https://www.aliexpress.com/item/3256807253047862.html"
      },
      {
        "title": "女性用チャンキープラットフォームスニーカー、女性用カジュアルトレーナー、フラットシューズ、グリーン、2023",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/Sd124ca2d588b4b7d954789278359c8ebj/2023-Sneakers-Women-Platform-Flat-Shoes-Woman-Shoes-Green-Casual-Trainers-Ladies-Chunky-Sneakers-Women-Shoes.jpg_350x350xz.jpg",
        "price": 3.17,
        "num_iid": "3256807176897813",
        "seller_nick": "Shop1103814472 Store",
        "shop_id": 1103816483,
        "detail_url": "https://www.aliexpress.com/item/3256807176897813.html"
      },
      {
        "title": "男性用の通気性のあるメッシュのランニングシューズ,快適なスニーカー,ウォーキング,テニス",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S00404da38e0149b99633be1e1864bf1eC/Men-Shoes-Comfortable-Sneakers-Breathable-Running-Shoes-For-Men-Mesh-Tenis-Sport-Shoes-Waling-Sneakers.jpg_350x350xz.jpg",
        "price": 12.99,
        "num_iid": "3256806250742683",
        "seller_nick": "SNEAKERS Store",
        "shop_id": 1103773121,
        "detail_url": "https://www.aliexpress.com/item/3256806250742683.html"
      },
      {
        "title": "男性用ランニングシューズレースアップ男性用スポーツシューズ軽量快適通気性ウォーキングスニーカーtenis masculino zapatillas hombre",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/Sb161c36032f24152bc5d1e4dc983ee2a5/Men-Running-Shoes-Lace-up-Men-Sport-Shoes-Lightweight-Comfortable-Breathable-Walking-Sneakers-Tenis-Masculino-Zapatillas.jpg_350x350xz.jpg",
        "price": 8.99,
        "num_iid": "3256805558112771",
        "seller_nick": "Damyuan Store",
        "shop_id": 1102512548,
        "detail_url": "https://www.aliexpress.com/item/3256805558112771.html"
      },
      {
        "title": "メンズ通気性平底スポーツシューズ,レジャー,ウォーキング,ランニング,人気,ラージサイズ39-44,春,秋",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S5ad953eb8b934fb8825b936547b3cc9cV/Fashion-Spring-and-Autumn-Leisure-Walking-and-Running-Breathable-Flat-Bottom-Sports-Men-s-Shoes-Popular.jpg_350x350xz.jpg",
        "price": 2.6,
        "num_iid": "3256807273010281",
        "seller_nick": "Shop1103716449 Store",
        "shop_id": 1103709546,
        "detail_url": "https://www.aliexpress.com/item/3256807273010281.html"
      },
      {
        "title": "Onemix-男性と女性のための白いランニングシューズ,エアクッション付きのアウトドアスポーツシューズ,夏のジョギングスニーカー",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S25c114f6d7714c4596747d23753c0959S/ONEMIX-White-Road-Running-Shoes-for-Men-Air-Cushion-Outdoor-Sport-Shoes-Male-Trainers-Summer-Jogging.jpg_350x350xz.jpg",
        "price": 37.21,
        "num_iid": "3256807619091238",
        "seller_nick": "Stone's Store",
        "shop_id": 1103576287,
        "detail_url": "https://www.aliexpress.com/item/3256807619091238.html"
      },
      {
        "title": "男性用の通気性のあるスニーカー,テニス,クラシック,カジュアル,アウトドア,快適,メッシュ,新しいコレクション2022",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/Sd0d60177db484618b7992ec128df16b00/Men-Sneakers-Breathable-Classic-Casual-Shoes-Man-Tennis-Sneakers-2024-New-in-Outdoor-Comfortable-Mesh-Men.jpg_350x350xz.jpg",
        "price": 5.85,
        "num_iid": "3256806165111510",
        "seller_nick": "BIG RUNNING Factory Dropshipping Official Store",
        "shop_id": 1102526079,
        "detail_url": "https://www.aliexpress.com/item/3256806165111510.html"
      },
      {
        "title": "Baasploa男性ランニングシューズ軽量スニーカーデザイナースニーカー男性通気性テニスシューズ滑り止め2023",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S7147d4416d9f4a7c9d5f509b9b85f24cP/Baasploa-Men-Running-Shoes-Lightweight-Sneakers-Designer-Sneaker-Male-Breathable-Tennis-Shoe-Non-Slip-2023-New.jpg_350x350xz.jpg",
        "price": 12.93,
        "num_iid": "3256806808564516",
        "seller_nick": "Stone's Store",
        "shop_id": 1103576287,
        "detail_url": "https://www.aliexpress.com/item/3256806808564516.html"
      },
      {
        "title": "メンズキャンバスシューズ,軽量メッシュモカシン,カジュアルワークモカシン,2024",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S75c3cc72ca554bd7b1ac73204a5ead1aJ/Men-s-casual-shoes-Vulcanized-Work-loafers-Mesh-Lightweight-Man-sports-shoes-Canvas-Shoes-for-Men.jpg_350x350xz.jpg",
        "price": 0.99,
        "num_iid": "3256807320433588",
        "seller_nick": "Shop1103814472 Store",
        "shop_id": 1103816483,
        "detail_url": "https://www.aliexpress.com/item/3256807320433588.html"
      },
      {
        "title": "エヴァメンズクロッグシューズ,軽量,卸売,プラスチック,ビーチサンダル,手帳,多機能,2023",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S0ee5b5b0bd1e4cba8bf25ea3a5231a8bM/2023-Factory-Cheap-EVA-Men-s-Clogs-Shoes-Lightweight-Wholesale-Plastic-Clog-Men-Beach-Working-Sandals.jpg_350x350xz.jpg",
        "price": 1.46,
        "num_iid": "3256806674670878",
        "seller_nick": "Stone's Store",
        "shop_id": 1103576287,
        "detail_url": "https://www.aliexpress.com/item/3256806674670878.html"
      },
      {
        "title": "防水性と滑り止めの暖かいスノーシュー,女性のための快適なローハイキングシューズ",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S93ce5ccd7b7d4c05a0267fa5bf967afbX/Women-s-Waterproof-Non-slip-Warm-Snow-Shoes-Comfortable-Low-Top-Hiking-Shoes.jpg_350x350xz.jpg",
        "price": 2.17,
        "num_iid": "3256805918584683",
        "seller_nick": "Shop1103032102 Store",
        "shop_id": 1103024132,
        "detail_url": "https://www.aliexpress.com/item/3256805918584683.html"
      },
      {
        "title": "防水性とぬいぐるみのスノーアンクルブーツ,女性用,暖かく,黒,カップル用,綿,プラットフォーム付き,冬用,新しいコレクション2023",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S8ee8397bf39243cf86731fa4f8b46571I/Waterproof-Winter-Boots-for-Women-2023-New-Plush-Snow-Boots-Women-Ankle-Boots-Warm-Black-Couple.jpg_350x350xz.jpg",
        "price": 6.99,
        "num_iid": "3256806196848703",
        "seller_nick": "Shop1103032102 Store",
        "shop_id": 1103024132,
        "detail_url": "https://www.aliexpress.com/item/3256806196848703.html"
      },
      {
        "title": "女性用カシミヤスノーブーツ,厚手の靴,カバーなし,ハーフシルバージッパー,コットンシューズ,冬用,ニューコレクション2023",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S05323e0517e84fd29a5519211f8c405eh/Snow-Boots-for-Women-2023-Winter-New-Cashmere-Warm-Thick-Soles-Without-Heel-covered-Hair-Half.jpg_350x350xz.jpg",
        "price": 6.76,
        "num_iid": "3256807290470722",
        "seller_nick": "Stone's Store",
        "shop_id": 1103576287,
        "detail_url": "https://www.aliexpress.com/item/3256807290470722.html"
      },
      {
        "title": "炎のプリントが施されたメンズスニーカー,快適なランニングシューズ,アウトドアアスレチックシューズ",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/Sbf51610f84564466a29d4d0a37d1eb41V/Men-s-Flame-Printed-Sneakers-Flying-Weave-Sports-Shoes-Comfortable-Running-Shoes-Outdoor-Men-Athletic-Shoes.jpg_350x350xz.jpg",
        "price": 8.02,
        "num_iid": "3256806910529953",
        "seller_nick": "Stone's Store",
        "shop_id": 1103576287,
        "detail_url": "https://www.aliexpress.com/item/3256806910529953.html"
      },
      {
        "title": "女性のためのハート型のバックルロリータシューズ,パテントレザー,プラットフォーム,メダルスタイル,メタルデコレーション,チャンヒールのポンプ,甘い,2023",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S0be8f2017a3643888b09925c72d80cd6e/Sweet-Heart-Shaped-Buckle-Lolita-Shoes-Women-Patent-Leather-Platform-Mary-Janes-Woman-Metal-Decoration-Chunky.jpg_350x350xz.jpg",
        "price": 0.99,
        "num_iid": "3256806262832614",
        "seller_nick": "Lesser Snow Store",
        "shop_id": 1103312049,
        "detail_url": "https://www.aliexpress.com/item/3256806262832614.html"
      },
      {
        "title": "メンズ通気性厚底カジュアルシューズ,韓国ファッション,生地,夏,スポーツ,2024",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/Sad755f93f0354e6e8f8de2062ef68addj/2024-Summer-Men-s-Cloth-Shoes-Breathable-Thick-soled-Casual-Shoes-Men-s-Korean-Fashion-Sports.jpg_350x350xz.jpg",
        "price": 0.99,
        "num_iid": "3256807083350674",
        "seller_nick": "Heartthrob Square Store",
        "shop_id": 1103731380,
        "detail_url": "https://www.aliexpress.com/item/3256807083350674.html"
      },
      {
        "title": "メンズカジュアルシューズ,快適なメンズスニーカー,レジャーシューズ,軽量ヴィンテージフラットシューズ,ラージサイズ",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S26d93aa2837141a7b9901174ec191871x/Shoes-for-Men-Plus-Size-Male-Loafers-Casual-Comfortable-Sneakers-Slip-On-leisure-Shoes-Lightweight-Vintage.jpg_350x350xz.jpg",
        "price": 0.99,
        "num_iid": "3256806731110910",
        "seller_nick": "Shop1103525002 Store",
        "shop_id": 1103519304,
        "detail_url": "https://www.aliexpress.com/item/3256806731110910.html"
      },
      {
        "title": "Onemix-男性と女性のための白いランニングシューズ,エアクッション付きのアウトドアスポーツシューズ,夏のジョギングスニーカー",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S25c114f6d7714c4596747d23753c0959S/ONEMIX-White-Road-Running-Shoes-for-Men-Air-Cushion-Outdoor-Sport-Shoes-Male-Trainers-Summer-Jogging.jpg_350x350xz.jpg",
        "price": 37.81,
        "num_iid": "3256805009535966",
        "seller_nick": "onemix Official Store",
        "shop_id": 1102513730,
        "detail_url": "https://www.aliexpress.com/item/3256805009535966.html"
      },
      {
        "title": "女性のための通気性のあるスポーツシューズ,白いトレーニングスニーカー,カジュアルで用途の広いボード,春と夏のファッション",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S1dfb56bdc50a417eab4570034ad9c83dB/Women-Shoes-Spring-and-Summer-Sports-Small-White-Training-Sneaker-Fashion-Casual-Versatile-Board-Breathable-Off.jpg_350x350xz.jpg",
        "price": 9.42,
        "num_iid": "3256806825163026",
        "seller_nick": "Stone's Store",
        "shop_id": 1103576287,
        "detail_url": "https://www.aliexpress.com/item/3256806825163026.html"
      },
      {
        "title": "男性と女性のための夏の厚底スリッパ,柔らかい底,屋内靴底,軽いビーチシューズ,ビーチサンダル",
        "pic_url": "//ae-pic-a1.aliexpress-media.com/kf/S70c3eaf9fd394ea780defc2df2592157F/Summer-Thick-Sole-Slippers-Men-Women-EVA-Soft-Bottom-Indoor-Home-Slides-Sandals-Light-Beach-Shoes.jpg_350x350xz.jpg",
        "price": 5.99,
        "num_iid": "3256806890906615",
        "seller_nick": "Walk To Shoes Store",
        "shop_id": 1103519306,
        "detail_url": "https://www.aliexpress.com/item/3256806890906615.html"
      }
    ],
    "_ddf": "ken"
  },
  "error_code": "0000",
  "reason": "ok",
  "secache": "a799cd7c0b5c3217932480868ddb51cc",
  "secache_time": 1729819429,
  "secache_date": "2024-10-25 09:23:49",
  "error": "",
  "cache": 0,
  "api_info": "today:1 max:10000 all[2654=1+1+2652];expires:2030-10-30",
  "execution_time": "4.27",
  "server_time": "Beijing/2024-10-25 09:23:49",
  "client_ip": "106.6.34.107",
  "call_args": {
    "q": "shoe"
  },
  "api_type": "aliexpress",
  "translate_language": "zh-CN",
  "translate_engine": "",
  "server_memory": "3.86MB",
  "request_id": "gw-3.671af320c5d94",
  "last_id": "3640333196"
}
异常示例
{
  "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": "aliexpress",
  "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:271449542271449542(微信同号)