万邦中控网根据关键词获取公司列表 API 返回值说明

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

zkw.item_search

公共参数

请求地址: https://api-gw.onebound.cn/zkw/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:2024-01-21

名称 类型 必须 示例值 描述
items
items[] 0 按关键字搜索商品
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.onebound.cn/zkw/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/zkw/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" =>"zkw",
	                "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/zkw/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/zkw/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/zkw/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/zkw/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/zkw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({"q":"\u7535\u6c14\u5de5\u4e1a","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":"zkw",
     "api_name" : "item_search",
     "api_params": {"q":"\u7535\u6c14\u5de5\u4e1a","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/zkw/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/zkw/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/zkw/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/zkw/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/zkw/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/zkw/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/zkw/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/zkw/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/zkw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=电气工业&page=1")
content(r)
url = "https://api-gw.onebound.cn/zkw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=电气工业&page=1";
response = webread(url);
disp(response);
响应示例
{
    "items":{
        "item":[
            {
                "desc":"G7、F7各规格变频一级代理感谢您对我公司的关注,我们愿用一流的服务为您提供高质量的产品。北京索德电气工业有限公司 010-58075500-356http://www.sword-elec.com/",
                "detail_url":"http://www.gkong.com/comm/userdetail.asp?name=bjsuode",
                "num_iid":"bjsuode",
                "title":"北京索德"
            },
            {
                "desc":"湖南汇鑫电力成套设备有限公司专业从事电气工业自动化控制系统、电力电气成套设备的设计、生产、销售及服务于一体的科技创新型企业。总部坐落在地理位置优越、环境优美的“中国工程机械之都”湖南省会长沙,生产基地",
                "detail_url":"http://www.gkong.com/comm/userdetail.asp?name=hxdl",
                "num_iid":"hxdl",
                "title":"湖南汇鑫电力成套设备有限公司"
            },
            {
                "desc":"技有限公司是世界电气工业巨人—ABB集团核心子公司—ABB半导体公司中国一级代理。本公司经销的ABB半导体元件,在高压大功率方面是公认的世界最佳,广泛应用于国内电力行业、机车行业、工业行业,其质量得到",
                "detail_url":"http://www.gkong.com/comm/userdetail.asp?name=caroline1215",
                "num_iid":"caroline1215",
                "title":"深圳市赛晶科技有限公司"
            },
            {
                "desc":"湖南汇鑫电力成套设备有限公司专业从事电气工业自动化控制系统、电力电气成套设备的设计、生产、销售及服务于一体的科技创新型企业。总部坐落在地理位置优越、环境优美的“中国工程机械之都”湖南省会长沙,生产基地",
                "detail_url":"http://www.gkong.com/comm/userdetail.asp?name=anniedengaf",
                "num_iid":"anniedengaf",
                "title":"湖南汇鑫电力成套设备有限公司"
            },
            {
                "desc":"”提供了核心元器件GTO,新一代使用IGCT的交流牵引机车正在研发之中;在工业行业,ABB半导体公司的元器件被大量应用于工业传动、无功补偿、励磁,整流等装置中。在代理ABB半导体公司产品的同时,我公",
                "detail_url":"http://www.gkong.com/comm/userdetail.asp?name=%B1%B1%BE%A9%C8%FC%BE%A7",
                "num_iid":"%B1%B1%BE%A9%C8%FC%BE%A7",
                "title":"北京华瑞赛晶电子科技有限公司"
            },
            {
                "desc":"授权在中国南方地区的总代理商,专业用于保护在恶劣环境中工作的电气元器件和电子部件的防水、防腐蚀的分线盒,密封箱、防爆箱、仪表箱、屏蔽箱、工业插座箱、检修箱以及高防护等级配电柜,种类多,货源充足。公司2",
                "detail_url":"http://www.gkong.com/comm/userdetail.asp?name=ax423",
                "num_iid":"ax423",
                "title":"广州步鲁德自动化设备有限公司"
            },
            {
                "desc":"晶讯科电子有限公司是日本北陆电气工业株式会社系(HDK/HOKURIKU)(全球最大的湿度传感器生产厂)在中国一级(A级)代理商,也是其湿度产品中国总代理。日本北陆电气工业株式会社系(HDK)是东京一",
                "detail_url":"http://www.gkong.com/comm/userdetail.asp?name=jxk1234",
                "num_iid":"jxk1234",
                "title":"深圳市晶讯科电子有公司"
            },
            {
                "desc":"报警器、起重机配件、凸轮控制器、主令控制器、声光组合信号器等自动化工控传感器。我公司所生产的产品是工业自动化必不可少的关键部位,被广泛应用于机械、机床制造业及食品厂、纺织、造纸、轻工、化工、矿山、冶金",
                "detail_url":"http://www.gkong.com/comm/userdetail.asp?name=1127876518",
                "num_iid":"1127876518",
                "title":"麻城施迈赛"
            },
            {
                "desc":"通用电气汽车工业部是以GE Fanuc自动化公司为基础、总部设在美国汽车城底特律,专业为汽车制造业提供全方位服务的全球性公司,并且在各大洲都设有区域分部。GE Fanuc汽车工业部的服务内容涵盖了汽车",
                "detail_url":"http://www.gkong.com/comm/userdetail.asp?name=GEAutomotive",
                "num_iid":"GEAutomotive",
                "title":"通用电气汽车工业部"
            },
            {
                "desc":"长远的发展,2011年3月,经公司高层商议决定,从网上开通一条销售渠道,工业电气分销网应运而生。我们相信依众业达目前的发展状况,工业电气分销网一定会为广大用户提供更便捷的购物服务和更愉快的网购新体验。",
                "detail_url":"http://www.gkong.com/comm/userdetail.asp?name=qing.yang",
                "num_iid":"qing.yang",
                "title":"众业达"
            },
            {
                "desc":"军工等各类产业设备中。我们全方位构建电子化管理中国工业领域平台、本着顾客满意、卓越创造的宗旨,持续高效提升技术、质量与服务的竞争力,并积极参与中国工业领域能源计划与生产力促进工程,以“自动化---节能",
                "detail_url":"http://www.gkong.com/comm/userdetail.asp?name=%C8%FD%B4%A8%B5%E7%C6%F8",
                "num_iid":"%C8%FD%B4%A8%B5%E7%C6%F8",
                "title":"三川"
            },
            {
                "desc":"从事工业自动化产品集成和进口工业电气产品代理的专业化公司,本着为国内各类机械厂商提供优质的产品、先进的技术和完美的服务。公司的宗旨是一切以客户的需求为主,解决客户在工业电气控制方面的问题,满足客户的真",
                "detail_url":"http://www.gkong.com/comm/userdetail.asp?name=xuhan6789",
                "num_iid":"xuhan6789",
                "title":"喀什市高首"
            },
            {
                "desc":"员,先进的加工设备,技术熟练的操作工人。本着服务客户的精神,为各企业提供高品质、安全、高效经济的工业电气自动化控制器件及系统。振兴民族企业,服务社会是盛科工电不遗余力推动科技创新的源泉,满足客户是我们",
                "detail_url":"http://www.gkong.com/comm/userdetail.asp?name=%CA%A2%BF%C6%B9%A4%B5%E7",
                "num_iid":"%CA%A2%BF%C6%B9%A4%B5%E7",
                "title":"诸城市盛科"
            },
            {
                "desc":"良氏工业自动化有限公司始于1994年。10年来在新老用户、合作伙伴的大力支持和全体员工的共同奋斗下,公司在自动化及电力低压配电领域为推动工业电力技术的发展不懈地努力,已发展成为在此领域特别是在低压、传",
                "detail_url":"http://www.gkong.com/comm/userdetail.asp?name=fjls8",
                "num_iid":"fjls8",
                "title":"福建良氏自动化工业电气有限公司"
            },
            {
                "desc":"绍兴菱川工业电气公司是一家从事工业自动化产品开发和应用的企业,台湾三碁(SAVCH)变频器浙江一级代理,世界第一品牌软启动器AUCOM浙江一级代理,台湾马可(MAKE)按钮、低压产品浙江总代理,",
                "detail_url":"http://www.gkong.com/comm/userdetail.asp?name=sanch",
                "num_iid":"sanch",
                "title":"绍兴市菱川"
            },
            {
                "desc":"一直以来我们都致力于传感器的生产与研发,目前拥有十几个系列数千种不同规格的产品,产品营销世界各地,严格参照国际标准生产与检测,并全部通过ISO9001、CE和ROHS认证产品广泛应用于航天、铁路、港口",
                "detail_url":"http://www.gkong.com/comm/userdetail.asp?name=zjh13712052466",
                "num_iid":"zjh13712052466",
                "title":"东莞市马赫"
            },
            {
                "desc":"浙江英特工业电气有限公司始创于1998年,座落于享有中国“电器之都”美誉的温州柳市,104国道绕厂而过,海、陆、空交通均十分便捷,信息迅捷、地理位置十分优越。 我司是一家专业生产经营断路器、保护器、温",
                "detail_url":"http://www.gkong.com/comm/userdetail.asp?name=%D3%A2%CC%D8",
                "num_iid":"%D3%A2%CC%D8",
                "title":"浙江英特"
            },
            {
                "desc":"南京蓝凯乔仕工业自动化电气有限公司是世界知名品牌软起动器和变频器及低压电器的专业分销商,具有多年的软起动器和变频器销售和成套的经验,是西门子、施耐德、ABB等品牌产品在中国地区的一级代理商,",
                "detail_url":"http://www.gkong.com/comm/userdetail.asp?name=zhangliang84",
                "num_iid":"zhangliang84",
                "title":"南京蓝凯乔仕"
            },
            {
                "desc":"南京蓝凯乔仕工业自动化电气有限公司是世界知名品牌软起动器和变频器及低压电器的专业分销商,具有多年的软起动器和变频器销售和成套的经验,是西门子、施耐德、ABB等品牌产品在中国地区的一级代理商,是多家大型",
                "detail_url":"http://www.gkong.com/comm/userdetail.asp?name=ABB%C4%CF%BE%A9PLC%CF%FA%CA%DB",
                "num_iid":"ABB%C4%CF%BE%A9PLC%CF%FA%CA%DB",
                "title":"南京蓝凯乔仕"
            },
            {
                "desc":"西门子软起动器: SIRIUS全系列3RW30/31/40;施耐德软起动器:  ATS48系列;ABB软起动器: PSS、PST、PSTB系列;ABB变频器:ACS400系列、ACS550系列、ACS",
                "detail_url":"http://www.gkong.com/comm/userdetail.asp?name=%D6%DC%B7%BC",
                "num_iid":"%D6%DC%B7%BC",
                "title":"南京蓝凯乔仕"
            }
        ],
        "page":1,
        "page_size":20,
        "pagecount":287,
        "q":"电气工业",
        "real_total_results":5739,
        "total_results":5739,
        "_ddf":"zwk",
        "price":-1
    },
    "error_code":"0000",
    "reason":"ok",
    "secache":"a4b3acf52575b96c6a52c33b860410ba",
    "secache_time":1705829814,
    "secache_date":"2024-01-21 17:36:54",
    "translate_status":"",
    "translate_time":0,
    "language":{
        "default_lang":"cn",
        "current_lang":"cn"
    },
    "error":"",
    "cache":0,
    "api_info":"today: max:15000 all[=++];expires:2031-01-01",
    "execution_time":"0.795",
    "server_time":"Beijing/2024-01-21 17:36:54",
    "client_ip":"127.0.0.1",
    "call_args":{
        "q":"电气工业",
        "start_price":"1"
    },
    "api_type":"zkw",
    "server_memory":"2.99MB",
    "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": "zkw",
  "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(微信同号)