万邦一呼百应根据关键词获取商品列表 API 返回值说明

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

yhby.item_search

公共参数

请求地址: https://api-gw.onebound.cn/yhby/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-29

名称 类型 必须 示例值 描述
items
items[] 0 按关键字搜索商品
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.onebound.cn/yhby/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/yhby/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" =>"yhby",
	                "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/yhby/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/yhby/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/yhby/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/yhby/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/yhby/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({"q":"\u7535\u8f6c","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":"yhby",
     "api_name" : "item_search",
     "api_params": {"q":"\u7535\u8f6c","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/yhby/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/yhby/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/yhby/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/yhby/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/yhby/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/yhby/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/yhby/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/yhby/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/yhby/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=电转&page=1")
content(r)
url = "https://api-gw.onebound.cn/yhby/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=电转&page=1";
response = webread(url);
disp(response);
响应示例
{
    "items":{
        "item":[
            {
                "company_name":"上海贺励展览有限公司",
                "company_url":"http://ibtechina1.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s504662607.html",
                "location":"广东 深圳市",
                "num_iid":"504662607",
                "pic_url":"http://imgupload.youboy.com/imagestore201903306411cf58-2ad1-4cb9-ab70-dae9a7cf303b.jpg?220x220",
                "price":-1,
                "title":"物理储能 储能技术电 化学储能 智能电网 燃料电池/电转气 风力发电 发电/电力储能 太阳能(光伏、光热)发电",
                "year":"1"
            },
            {
                "company_name":"东莞市达威五金设备有限公司",
                "company_url":"http://bosch.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s504136495.html",
                "location":"广东 东莞市",
                "num_iid":"504136495",
                "pic_url":"http://imgupload.youboy.com/imagestore20180725c54e023a-9ddc-4774-a6ae-c6608c701310.jpg?220x220",
                "price":"113.0",
                "title":"博世手电钻TBM3400 电动螺丝刀工具家用多功能电转调速220V手电钻",
                "year":"12"
            },
            {
                "company_name":"沈阳金辰阳科技有限公司",
                "company_url":"http://syjingyijd.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s502603401.html",
                "location":"辽宁 沈阳市",
                "num_iid":"502603401",
                "pic_url":"http://imgupload2.youboy.com/imagestore20170214577800b0-ceb3-49ea-8c01-41d485b230ed.jpg?220x220",
                "price":-1,
                "title":"沈阳单相变三相电 沈阳单相变压三相电源 沈阳民用电转工业电",
                "year":"10"
            },
            {
                "company_name":"沈阳金辰阳科技有限公司",
                "company_url":"http://syjingyijd.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s502613253.html",
                "location":"辽宁 沈阳市",
                "num_iid":"502613253",
                "pic_url":"http://imgupload4.youboy.com/imagestore20170214e8b52e49-5055-4877-940a-fcae03973ad7.jpg?220x220",
                "price":-1,
                "title":"220V转380V电源转换器 单相电转三相电转换器 民用转工业电",
                "year":"10"
            },
            {
                "company_name":"北京华美仪器有限公司",
                "company_url":"http://bjhmyiqi.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s505822067.html",
                "location":" 北京市",
                "num_iid":"505822067",
                "pic_url":"http://imgupload.youboy.com/imagestore201705058a18af57-a830-446f-8ece-bb38ca6d5547.jpg?220x220",
                "price":-1,
                "title":"北京(伯乐总部) BIORAD电转仪售后维修",
                "year":"5"
            },
            {
                "company_name":"北京赛百奥科技有限公司",
                "company_url":"http://cbio21.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s58736199.html",
                "location":" 北京市",
                "num_iid":"58736199",
                "pic_url":"http://file2.youboy.com/a/10/9/25/8/11973098.jpg?220x220",
                "price":-1,
                "title":"北京现货供应BIO-RAD伯乐电转杯",
                "year":"13"
            },
            {
                "company_name":"北京军通科技自动化有限公司",
                "company_url":"http://jtkj.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s27703269.html",
                "location":"",
                "num_iid":"27703269",
                "pic_url":"http://file.youboy.com/a/44/95/19/2/4647252.jpg?220x220",
                "price":-1,
                "title":"profibusDP现场总线光电转换器价格-军通科技ANYBUs",
                "year":"10"
            },
            {
                "company_name":"鹤壁市鑫诚信仪器仪表有限公司",
                "company_url":"http://xinchengxin3137.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s502832935.html",
                "location":"河南 鹤壁市",
                "num_iid":"502832935",
                "pic_url":"http://imgupload3.youboy.com/imagestore201911219dd77ea6-bd22-4f18-89cf-5a04fa0e1aed.jpg?220x220",
                "price":-1,
                "title":"鑫诚信生产煤质化验设备 胶质层测定仪配件电子转钟 计录钟仪器 电子转钟/胶质层配件",
                "year":"8"
            },
            {
                "company_name":"河北万泰环保设备有限公司",
                "company_url":"http://13931748420.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s502765439.html",
                "location":"河北 沧州市",
                "num_iid":"502765439",
                "pic_url":"http://imgupload.youboy.com/imagestore2015110291ecacb2-3cae-481b-98e4-d330367b1f57.jpg?220x220",
                "price":"100.0",
                "title":"高压静电电捕焦油除尘器静静电除尘器配件2702瓷转轴除尘花板",
                "year":"4"
            },
            {
                "company_name":"深圳必应供应链管理有限公司",
                "company_url":"http://szbygyl.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s506306180.html",
                "location":"广东 深圳市",
                "num_iid":"506306180",
                "pic_url":"http://imgupload.youboy.com/imagestore202306072b7c552f-80da-4082-83bf-c0519a640be6.png?220x220",
                "price":-1,
                "title":"美国转墨西哥海派专线     美墨专线",
                "year":"1"
            },
            {
                "company_name":"深圳市岚凯智能有限公司",
                "company_url":"http://zll20090317.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s504019023.html",
                "location":"广东 深圳市",
                "num_iid":"504019023",
                "pic_url":"http://imgupload.youboy.com/imagestore20171225925f07f8-ad76-464e-bfa7-bfba604e5ec3.png?220x220",
                "price":-1,
                "title":"供应一字转闸价格 监狱转闸 昆明转闸 全新一字转闸价格电议",
                "year":"7"
            },
            {
                "company_name":"温州市百缘自动化设备有限公司",
                "company_url":"http://baiyuan626.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s500364475.html",
                "location":"浙江 温州市",
                "num_iid":"500364475",
                "pic_url":"http://imgupload4.youboy.com/imagestore201507221acdb601-df9f-424b-a8ae-a23169cde1d0.jpg?220x220",
                "price":"1000.0",
                "title":"浙江电饭锅内胆全自动喷砂机 间歇转台式全自动喷砂机 多工位自动喷砂机厂家定制",
                "year":"5"
            },
            {
                "company_name":"北京鸿泰顺达科技有限公司",
                "company_url":"http://htsd168.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s505275164.html",
                "location":" 北京市",
                "num_iid":"505275164",
                "pic_url":"http://imgupload.youboy.com/imagestore20200523bc8d5409-d3c6-4d1e-a3d0-232a9b15ff45.jpg?220x220",
                "price":-1,
                "title":"CH-CS-3M正反转转速传感器优选北京鸿泰顺达科技有限公司;CH-CS-3M正反转转速传感器市场价格|经销价格|询价电",
                "year":"10"
            },
            {
                "company_name":"武汉市雷创技术发展有限公司",
                "company_url":"http://orclen.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s504785316.html",
                "location":"湖北 武汉市",
                "num_iid":"504785316",
                "pic_url":"http://imgupload.youboy.com/imagestore201905286edf1bf9-1260-422e-bc67-cf74d91f746d.jpg?220x220",
                "price":-1,
                "title":"光伏逆变器防雷模块220V转24,直流电源防雷模块,低压电源电涌保护器",
                "year":"5"
            },
            {
                "company_name":"东莞市星乔仪器设备有限公司",
                "company_url":"http://xingqiao17.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s504053105.html",
                "location":"广东 东莞市",
                "num_iid":"504053105",
                "pic_url":"http://imgupload.youboy.com/imagestore20180629a7a69b21-1179-4fad-a5ae-8fc52dc7dca8.jpg?220x220",
                "price":"7200.0",
                "title":"电吹风电发夹卷发棒转绕疲劳试验机 美发烫发器转绕疲劳试验机 电器转饶试验机",
                "year":"1"
            },
            {
                "company_name":"东莞市星乔仪器设备有限公司",
                "company_url":"http://xingqiao17.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s504056198.html",
                "location":"广东 东莞市",
                "num_iid":"504056198",
                "pic_url":"http://imgupload3.youboy.com/imagestore20180630d407d617-d478-42fd-80c8-39336f2da4c8.jpg?220x220",
                "price":"10300.0",
                "title":"电发夹卷发棒转绕疲劳试验机 电线转饶寿命试验机 转尾试验机",
                "year":"1"
            },
            {
                "company_name":"东莞市星乔仪器设备有限公司",
                "company_url":"http://xingqiao17.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s504068240.html",
                "location":"广东 东莞市",
                "num_iid":"504068240",
                "pic_url":"http://imgupload3.youboy.com/imagestore201807044ee07ea8-9d4e-4364-a8d3-e60da3ad1081.jpg?220x220",
                "price":"12800.0",
                "title":"电吹风电发夹发棒转尾疲劳试验机 直发器转尾寿命试验机 转饶实验机",
                "year":"1"
            },
            {
                "company_name":"山西钬鸿源贸易有限责任公司",
                "company_url":"http://huohy.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s506301203.html",
                "location":"山西 太原市",
                "num_iid":"506301203",
                "pic_url":"http://imgupload.youboy.com/imagestore20231113e7a895ef-09e7-4b1f-8374-7c0719e9905a.jpg?220x220",
                "price":-1,
                "title":"吕梁门禁转闸批发-服务商批发",
                "year":"4"
            },
            {
                "company_name":"高要区金利镇千代田五金厂",
                "company_url":"http://qdtwjc56.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s505036801.html",
                "location":"广东 肇庆市",
                "num_iid":"505036801",
                "pic_url":"http://imgupload1.youboy.com/imagestore20191120b9b3ba61-7d9a-43fb-81a7-63994cae925c.jpeg?220x220",
                "price":-1,
                "title":"MS603电箱门锁 配电柜锁 工业锁 转舌锁机箱机柜锁 ms603电箱门锁",
                "year":"1"
            },
            {
                "company_name":"廊坊静德数控设备有限公司",
                "company_url":"http://jingdeshukong.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s506116763.html",
                "location":"浙江 金华市",
                "num_iid":"506116763",
                "pic_url":"http://imgupload1.youboy.com/imagestore20230328c2cc4497-6bc8-438e-8cf2-91a66b304678.jpg?220x220",
                "price":-1,
                "title":"二手金方圆电液伺服数控折弯机PM6",
                "year":"5"
            },
            {
                "company_name":"东莞市星伟电子科技有限公司",
                "company_url":"http://xwdzkj.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s505129558.html",
                "location":"广东 东莞市",
                "num_iid":"505129558",
                "pic_url":"http://imgupload2.youboy.com/imagestore20200228c3ec6b05-5e2d-42ae-9695-6b1e0454a9fe.jpg?220x220",
                "price":"16500.0",
                "title":"三工位电吹风转尾寿命试验机 三工位转尾疲劳试验机  程控电发棒转尾疲劳寿命试验机",
                "year":"1"
            },
            {
                "company_name":"郑州网迈贸易有限公司",
                "company_url":"http://hnjhkj.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s505723589.html",
                "location":"河南 郑州市",
                "num_iid":"505723589",
                "pic_url":"http://imgupload4.youboy.com/imagestore20210720fe132320-b6b7-45b1-851c-6e499aca99d7.jpg?220x220",
                "price":-1,
                "title":"华为千兆电口光模块SFP-1000BASE-T1OM9150X1A适用华为 中兴 锐捷等国产交换机",
                "year":"11"
            },
            {
                "company_name":"东莞市比高电子有限公司",
                "company_url":"http://rockytang888.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s504816636.html",
                "location":"广东 东莞市",
                "num_iid":"504816636",
                "pic_url":"http://imgupload2.youboy.com/imagestore201906183341325a-7a5a-401f-be1a-3e3e6d9412ad.png?220x220",
                "price":"18.5",
                "title":"家用节电器智能省电器80KW 电表电管家省电宝非偷电非不走慢转器",
                "year":"6"
            },
            {
                "company_name":"深圳四夕摄影设计有限公司",
                "company_url":"http://sixisy.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s505383503.html",
                "location":"",
                "num_iid":"505383503",
                "pic_url":"http://imgupload.youboy.com/imagestore20200721cd57c4a2-46a3-42ed-9f30-53b9e77aa305.jpg?220x220",
                "price":-1,
                "title":"深圳龙岗工具类产品拍摄毛巾浴巾拍摄拍摄 深圳龙岗工具类产品拍摄毛巾拍摄",
                "year":"6"
            },
            {
                "company_name":"东莞市星伟电子科技有限公司",
                "company_url":"http://xwdzkj.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s505129706.html",
                "location":"广东 东莞市",
                "num_iid":"505129706",
                "pic_url":"http://imgupload.youboy.com/imagestore20200228c628be1a-311f-4203-b01d-8d72dd5ba1c9.jpg?220x220",
                "price":"17200.0",
                "title":"吹风筒转尾寿命测试仪 电发夹机转尾疲劳试验机 吹风筒转尾寿命机 烫发夹转尾疲劳机 五工位电吹风转尾测试仪",
                "year":"1"
            },
            {
                "company_name":"东莞市星伟电子科技有限公司",
                "company_url":"http://xwdzkj.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s505129741.html",
                "location":"广东 东莞市",
                "num_iid":"505129741",
                "pic_url":"http://imgupload.youboy.com/imagestore202002288ef4f5af-1bfe-47f3-b702-11e1195acd65.jpg?220x220",
                "price":"11500.0",
                "title":"触摸式电吹风转绕寿命测试机 电发夹转绕疲劳机 电吹风电发夹耐转绕寿命实验机 吹风筒转绕疲劳试验机",
                "year":"1"
            },
            {
                "company_name":"青岛大东科技有限公司",
                "company_url":"http://lcz126.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s504410294.html",
                "location":"山东 青岛市",
                "num_iid":"504410294",
                "pic_url":"http://imgupload.youboy.com/imagestore2018111666ed83bf-a892-45c5-a939-4bef3428299a.jpg?220x220",
                "price":"630000.0",
                "title":"大东科技数控转塔冲床--全电单伺服数控转塔冲床",
                "year":"6"
            },
            {
                "company_name":"东莞市星伟电子科技有限公司",
                "company_url":"http://xwdzkj.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s505129736.html",
                "location":"广东 东莞市",
                "num_iid":"505129736",
                "pic_url":"http://imgupload.youboy.com/imagestore20200228942d59f5-06d9-4cc8-aff6-560120b007c3.jpg?220x220",
                "price":"18200.0",
                "title":"6工位吹风筒转尾寿命测试仪 电发夹转尾试验机 卷发棒转尾试验机 六工位电吹风转尾摇摆机",
                "year":"1"
            },
            {
                "company_name":"天津滨海新区三格电子科技有限公司",
                "company_url":"http://sangedainzi.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s506248565.html",
                "location":" 天津市",
                "num_iid":"506248565",
                "pic_url":"http://imgupload1.youboy.com/imagestore20230725b6cad1bd-e3dd-4876-91c1-e44d27db2294.jpg?220x220",
                "price":"600.0",
                "title":"三格RS422/TTL电平信号转光纤编码器HTL/TTL信号光纤转换器隔离型",
                "year":"1"
            },
            {
                "company_name":"深圳市赛恩思电气有限公司",
                "company_url":"http://szsesdq.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s506264266.html",
                "location":"广东 深圳市",
                "num_iid":"506264266",
                "pic_url":"http://imgupload4.youboy.com/imagestore20230823ce058b2e-2d6c-4861-ae02-1e86b4a46f95.jpg?220x220",
                "price":-1,
                "title":"干式隔离变压器  380v转220v怎么接线 5.5千瓦三相电变220v 变压器厂家批发采购",
                "year":"9"
            },
            {
                "company_name":"佛山市暖工坊热能科技有限公司",
                "company_url":"http://nuangongfang.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s504478768.html",
                "location":"广东 佛山市",
                "num_iid":"504478768",
                "pic_url":"http://imgupload4.youboy.com/imagestore201812172d485380-a9fa-4634-ace2-9876be677054.jpg?220x220",
                "price":-1,
                "title":"欧博德智能畜牧地暖 养殖场电热砖 电热地板砖",
                "year":"4"
            },
            {
                "company_name":"深圳市坚丰电子股份有限公司",
                "company_url":"http://jofr.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s505731047.html",
                "location":"广东 深圳市",
                "num_iid":"505731047",
                "pic_url":"http://imgupload.youboy.com/imagestore20210727e987c31e-6730-4cf8-9f07-7a8d39026b52.jpg?220x220",
                "price":-1,
                "title":"手用电批高转无刷电动螺丝刀 新款通用 深圳厂家直供",
                "year":"1"
            },
            {
                "company_name":"唐山市丰润区久增彩钢房加工部",
                "company_url":"http://xinrui518888.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s506216933.html",
                "location":" 北京市",
                "num_iid":"506216933",
                "pic_url":"http://imgupload.youboy.com/imagestore20230520f471b421-1d2f-4a80-95f5-b5359bb03d0c.jpg?220x220",
                "price":-1,
                "title":"顺义新国展移机空调外机不转是什么原因规定家长自愿出资购电",
                "year":"11"
            },
            {
                "company_name":"洛阳贝恩办公家具有限公司",
                "company_url":"http://dingfeng11936.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s502116205.html",
                "location":"河南 洛阳市",
                "num_iid":"502116205",
                "pic_url":"http://imgupload.youboy.com/imagestore20160819c0287c6f-4f29-4fa1-aede-8510cd095a3d.jpg?220x220",
                "price":"22.0",
                "title":"把手锁电箱锁工具柜锁电器柜锁具 优质铁皮柜连杆锁 天地锁橱柜锁 转舌锁信箱锁",
                "year":"8"
            },
            {
                "company_name":"青岛华宸仪器仪表有限公司",
                "company_url":"http://qingdaohuacyiqi.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s504093047.html",
                "location":"山东 青岛市",
                "num_iid":"504093047",
                "pic_url":"http://imgupload.youboy.com/imagestore20180711abdba156-1e52-42cd-9185-f1a1e9e6735b.jpg?220x220",
                "price":-1,
                "title":"新版 电流转电压模块 4-20MA 转 0-5V 线性转换 变送器模块",
                "year":"1"
            },
            {
                "company_name":"福建省鑫玛特机械设备有限公司",
                "company_url":"http://fjxmtjx.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s502840626.html",
                "location":"福建 泉州市",
                "num_iid":"502840626",
                "pic_url":"http://imgupload.youboy.com/imagestore2017040797e895cd-a4bc-409d-89b2-906466a79179.png?220x220",
                "price":"560000.0",
                "title":"鑫玛特热销产品卧式全电双伺服转塔冲床ED200 数控转塔冲床",
                "year":"5"
            },
            {
                "company_name":"福建省鑫玛特机械设备有限公司",
                "company_url":"http://fjxmtjx.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s502840695.html",
                "location":"福建 泉州市",
                "num_iid":"502840695",
                "pic_url":"http://imgupload.youboy.com/imagestore201704079a5bf415-3fe7-43d9-a4b4-646b43b2a8df.png?220x220",
                "price":"666666.0",
                "title":"鑫玛特热销数控转塔冲床 双伺服转塔冲床ED200",
                "year":"5"
            },
            {
                "company_name":"福建省鑫玛特机械设备有限公司",
                "company_url":"http://fjxmtjx.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s502840537.html",
                "location":"福建 泉州市",
                "num_iid":"502840537",
                "pic_url":"http://imgupload.youboy.com/imagestore20170407ba8414e8-45c7-4216-8f7c-a6917d265c79.png?220x220",
                "price":"500000.0",
                "title":"精品 全电双伺服转塔冲床 ED200系列冲床",
                "year":"5"
            },
            {
                "company_name":"中山市三乡镇世通磨料磨具商行",
                "company_url":"http://TONG168.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s503129919.html",
                "location":"广东 中山市",
                "num_iid":"503129919",
                "pic_url":"http://imgupload.youboy.com/imagestore201706228c088707-e8aa-460e-8520-5c10bde53778.png?220x220",
                "price":"70.0",
                "title":"盛势家用充电钻多功能手枪式钻小型大功率710W手电钻多功能电转",
                "year":"1"
            },
            {
                "company_name":"深圳瀚氏科技有限公司",
                "company_url":"http://veikx.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s502831765.html",
                "location":"广东 深圳市",
                "num_iid":"502831765",
                "pic_url":"http://imgupload.youboy.com/imagestore2017040633cea125-8d54-49d6-b4b5-73221fffa722.jpg?220x220",
                "price":-1,
                "title":"微商营销软件微快销,一键转图微快微商营销软件微快销一键转图",
                "year":"2"
            },
            {
                "company_name":"深圳市易控達科技有限公司",
                "company_url":"http://moses2030.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s86271361.html",
                "location":"广东 深圳市",
                "num_iid":"86271361",
                "pic_url":"http://file.youboy.com/d/152/36/26/7/113857.png?220x220",
                "price":"1000.0",
                "title":"供应电流量信号光纤中继器",
                "year":"8"
            },
            {
                "company_name":"深圳美视达天线器材有限公司",
                "company_url":"http://SZMSD.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s503281592.html",
                "location":"广东 深圳市",
                "num_iid":"503281592",
                "pic_url":"http://imgupload.youboy.com/imagestore201710112bf00132-be58-4a5e-a830-3da3b31f4dbe.png?220x220",
                "price":"3500.0",
                "title":"新品IP转DTMB神器数字电视前端新技术可转IPTV和国标调制器迷你型抓流服务器",
                "year":"2"
            },
            {
                "company_name":"仪征鼎盛机械制造有限公司",
                "company_url":"http://Raphael1985222.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s501837103.html",
                "location":"江苏 扬州市",
                "num_iid":"501837103",
                "pic_url":"http://imgupload2.youboy.com/imagestore20160603a536a984-8ff3-4f49-9748-710e2a06d011.jpg?220x220",
                "price":"10000.0",
                "title":"供应DEM全电伺服数控转塔冲床 液压数控转塔冲床 开式机械数控转塔冲床 闭式机械数控转塔冲床 折弯机 剪板机",
                "year":"4"
            },
            {
                "company_name":"仪征鼎盛机械制造有限公司",
                "company_url":"http://Raphael1985222.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s501861606.html",
                "location":"江苏 扬州市",
                "num_iid":"501861606",
                "pic_url":"http://imgupload4.youboy.com/imagestore2016031505a90bf5-cea2-4a9c-ad9f-466bdaa6c5ed.jpg?220x220",
                "price":"10000.0",
                "title":"供应数控转塔冲床",
                "year":"4"
            },
            {
                "company_name":"仪征鼎盛机械制造有限公司",
                "company_url":"http://Raphael1985222.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s501837265.html",
                "location":"江苏 扬州市",
                "num_iid":"501837265",
                "pic_url":"http://imgupload.youboy.com/imagestore20160603511804b4-4534-45be-bcfe-c1dd11da1ca4.jpg?220x220",
                "price":"10000.0",
                "title":"供应DHM数控液压转塔冲床 伺服数控转塔冲 开式机械数控转塔冲床 闭式机械数控转塔冲床",
                "year":"4"
            },
            {
                "company_name":"仪征鼎盛机械制造有限公司",
                "company_url":"http://Raphael1985222.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s501839412.html",
                "location":"江苏 扬州市",
                "num_iid":"501839412",
                "pic_url":"http://imgupload3.youboy.com/imagestore20160315609f8e82-8841-43a5-ab4c-910f3376a576.jpg?220x220",
                "price":"10000.0",
                "title":"供应DCM系列数控转塔冲(闭式机械)开式机械数控转塔冲床 全电伺服数控转塔冲床 液压数控转塔冲床",
                "year":"4"
            },
            {
                "company_name":"仪征鼎盛机械制造有限公司",
                "company_url":"http://Raphael1985222.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s501839458.html",
                "location":"江苏 扬州市",
                "num_iid":"501839458",
                "pic_url":"http://imgupload3.youboy.com/imagestore201603153513c238-04ca-4f44-9d18-1361a4dae1f4.jpg?220x220",
                "price":"10000.0",
                "title":"供应DGM系列数控转塔冲床开式机械 闭式机械数控转塔冲床 全电伺服数控转塔冲床 液压数控转塔冲床 折弯机 剪板机",
                "year":"4"
            },
            {
                "company_name":"东莞市星乔仪器设备有限公司",
                "company_url":"http://xingqiao17.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s504056354.html",
                "location":"广东 东莞市",
                "num_iid":"504056354",
                "pic_url":"http://imgupload2.youboy.com/imagestore201806305e609ade-ad4b-4719-8298-dd13efde834b.jpg?220x220",
                "price":"10500.0",
                "title":"电线电缆转尾寿命试验机 电发夹电源线转尾疲劳测试仪 电吹风折叠耐久试验机",
                "year":"1"
            },
            {
                "company_name":"深圳鹏羿光电技术有限公司",
                "company_url":"http://szpygd.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s503333127.html",
                "location":"广东 深圳市",
                "num_iid":"503333127",
                "pic_url":"http://imgupload.youboy.com/imagestore20170811b76cec22-9e40-4d4c-b699-f91e09d2cc3d.png?220x220",
                "price":-1,
                "title":"万兆电口模块SFP+光模块10G光转电模块RJ45口兼容华为/华三/思科ROCS10G-T",
                "year":"2"
            },
            {
                "company_name":"无锡茂尚电子科技有限公司",
                "company_url":"http://wxmsdz.b2b.youboy.com/",
                "detail_url":"https://www.youboy.com/s504205827.html",
                "location":"江苏 无锡市",
                "num_iid":"504205827",
                "pic_url":"http://imgupload4.youboy.com/imagestore2018050806a5d48f-70af-4842-94e9-1655041bf03f.jpg?220x220",
                "price":-1,
                "title":"0-5A转4-20mA转换模块0-5A转0-20mA电流变送器生产厂家  0-5A转4-20mA电流变送器",
                "year":"4"
            }
        ],
        "page":1,
        "page_size":50,
        "pagecount":8,
        "q":"电转",
        "real_total_results":399,
        "total_results":399,
        "_ddf":"007swz"
    },
    "error_code":"0000",
    "reason":"ok",
    "secache":"6f15de79c0bc6aded22d49e30eec7595",
    "secache_time":1703842615,
    "secache_date":"2023-12-29 17:36:55",
    "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":"3.007",
    "server_time":"Beijing/2023-12-29 17:36:55",
    "client_ip":"127.0.0.1",
    "call_args":{
        "q":"电转",
        "start_price":"1"
    },
    "api_type":"yhby",
    "server_memory":"3.12MB",
    "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": "bili",
  "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(微信同号)