万邦顺企网根据关键词获取企业列表 API 返回值说明

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

sqw.item_search

公共参数

请求地址: https://api-gw.onebound.cn/sqw/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=火锅

参数说明:q:关键词,

响应参数

Version: Date:2023-12-24

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

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

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/sqw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=火锅";
  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/sqw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=火锅");
         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/sqw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=火锅", (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/sqw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=火锅")
    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/sqw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=火锅")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

library(httr)
r <- GET("https://api-gw.onebound.cn/sqw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=火锅")
content(r)
url = "https://api-gw.onebound.cn/sqw/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=火锅";
response = webread(url);
disp(response);
响应示例
{
    "items":{
        "item":[
            {
                "address":"深圳市宝安区石岩街道龙腾社区松白路2491号三楼",
                "detail_url":"https://www.11467.com/shenzhen/co/954555.htm",
                "found_time":"2012-05-30",
                "img":"//img4.11467.com/u/21326327/163963205_small.jpg",
                "main_product":"特色小吃、潮汕牛肉火锅,广式茶点、顺德火焰醉鹅,农家柴火鸡,洞庭湖土鸭,中山脆肉鲩.梅州腌面,紫金八...",
                "num_iid":"shenzhen/co/954555",
                "regist_capital":null,
                "title":"深圳市创富餐饮管理有限公司"
            },
            {
                "address":"重庆市渝北区龙山街道余松一支路7号龙湖紫都城3-",
                "detail_url":"https://www.11467.com/chongqing/co/345621.htm",
                "found_time":"2014-04-22",
                "img":null,
                "main_product":"火锅",
                "num_iid":"chongqing/co/345621",
                "regist_capital":"1000(万元)",
                "title":"重庆江与天实业有限公司"
            },
            {
                "address":"秦皇岛市经济技术开发区珠江道16-1号(部分一二",
                "detail_url":"https://www.11467.com/qinhuangdao/co/71316.htm",
                "found_time":"2016-09-29",
                "img":null,
                "main_product":"胖水手肉蟹煲,小猪犇犇水煎肉,菲力大亨鸡排杯,逅果时尚饮品,瘾川居日式料理火锅,辣红颜麻辣烫,沙拉游...",
                "num_iid":"qinhuangdao/co/71316",
                "regist_capital":"贰仟万元整(万元)",
                "title":"秦皇岛泛亚餐饮管理有限公司"
            },
            {
                "address":"广州市白云区永平街同泰路87号铭润智慧广场五楼5",
                "detail_url":"https://www.11467.com/qiye/93169602.htm",
                "found_time":"2017-11-20",
                "img":"//img.11467.com/2018/10-16/37556895_small.jpg",
                "main_product":"小本创业致富项目,创业加盟项目,小本创业开店,圣冰客,弹茶,本官巡茶,唤茶,保罗汉堡,绝新鸡排,家常...",
                "num_iid":"qiye/93169602",
                "regist_capital":"500万人民币(万元)",
                "title":"广州市东皇企业管理服务有限公司"
            },
            {
                "address":"广州市番禺区洛浦街厦滘村广州市信基沙溪酒店用品博",
                "detail_url":"https://www.11467.com/qiye/88627690.htm",
                "found_time":"2017-02-27",
                "img":"//img3.11467.com/2019/06-28/2714017636_small.jpg",
                "main_product":"专业上门承办中西式自助餐、中式围餐,大盆菜,鸳鸯火锅、高端冷餐会、西式位上,各国风情美食节、自助烧烤...",
                "num_iid":"qiye/88627690",
                "regist_capital":"200(万元)",
                "title":"广州国厨盛宴餐饮服务有限公司"
            },
            {
                "address":"西安市新城区西五路85号友谊大厦一层部分",
                "detail_url":"https://www.11467.com/xian/co/167990.htm",
                "found_time":"2015-11-10",
                "img":null,
                "main_product":"火锅加盟,麻辣男女火锅,西安特色火锅",
                "num_iid":"xian/co/167990",
                "regist_capital":"10 万(万元)",
                "title":"西安麻辣男女餐饮管理有限公司"
            },
            {
                "address":"新津县",
                "detail_url":"https://www.11467.com/qiye/93730386.htm",
                "found_time":"2015-10-16",
                "img":null,
                "main_product":"特色餐桌,厨房设备,柴火鸡灶台,铁锅炖桌子,涮烤一体桌,火锅烤肉一体桌",
                "num_iid":"qiye/93730386",
                "regist_capital":"100(万元)",
                "title":"四川品的智能设备有限公司"
            },
            {
                "address":"广东省中山市东凤镇东阜四路16号",
                "detail_url":"https://www.11467.com/zhongshan/co/118970.htm",
                "found_time":"2012-09-27",
                "img":null,
                "main_product":"品牌火锅炉,小火锅,火锅电磁炉, 火锅专用电磁炉, 火锅用品 电磁火锅炉, 火锅炉, 火锅桌, 火锅...",
                "num_iid":"zhongshan/co/118970",
                "regist_capital":"156320(万元)",
                "title":"中山市柯若士电器有限公司"
            },
            {
                "address":"厦门市海沧区东孚镇玛瑙街58号厂房",
                "detail_url":"https://www.11467.com/xiamen/co/5324.htm",
                "found_time":"2008-01-21",
                "img":null,
                "main_product":"餐桌椅,餐厅桌椅,咖啡厅酒吧桌椅,西餐厅桌椅,茶餐厅桌椅,火锅店桌椅,厦门餐桌椅,食堂餐桌椅,酒吧桌...",
                "num_iid":"xiamen/co/5324",
                "regist_capital":"500(万元)",
                "title":"厦门欣百恒建材有限公司"
            },
            {
                "address":"马山县白山镇立星村马六岭",
                "detail_url":"https://www.11467.com/nanning/co/74428.htm",
                "found_time":"2008-03-21",
                "img":null,
                "main_product":"旱藕粉 ; 旱藕粉丝 ; 火锅粉丝",
                "num_iid":"nanning/co/74428",
                "regist_capital":"人民币50万(万元)",
                "title":"广西马山县山里来食品有限公司"
            },
            {
                "address":"云南省保山市隆阳区板桥镇工业园区",
                "detail_url":"https://www.11467.com/baoshan/co/9704.htm",
                "found_time":"2003-11-21",
                "img":null,
                "main_product":"休闲牛羊肉 ; 冰鲜牛羊肉 ; 火锅套餐 ; 野生菌 ; 蕨菜 ; 核桃",
                "num_iid":"baoshan/co/9704",
                "regist_capital":"2600万元(万元)",
                "title":"云南保龙食品集团有限公司"
            },
            {
                "address":"中国 内蒙古 巴彦淖尔市临河区 万丰经济技术开发",
                "detail_url":"https://www.11467.com/bayannaoer/co/4828.htm",
                "found_time":null,
                "img":null,
                "main_product":"调味品 ; 调料 ; 火锅涮料 ; 小包装炖肉料 ; 各类定量包装调料 ; 散调料 ; OEM代加工",
                "num_iid":"bayannaoer/co/4828",
                "regist_capital":"无需验资(万元)",
                "title":"巴彦淖尔市临河区聚源食品厂"
            },
            {
                "address":"中国 安徽 合肥市庐阳区 淮河路3号中房名城",
                "detail_url":"https://www.11467.com/hefei/co/99503.htm",
                "found_time":null,
                "img":null,
                "main_product":"重庆鸡公煲 ; 重庆火锅 ; 鸡公煲 ; 鸡公煲加盟 ; 火锅加盟 ; 火锅 ; 烧鸡公 ; 烧鸡公...",
                "num_iid":"hefei/co/99503",
                "regist_capital":"无需验资(万元)",
                "title":"安徽川辣王酒店管理有限公司"
            },
            {
                "address":"重庆市渝中区大坪正街160号5幢2单元1-2#",
                "detail_url":"https://www.11467.com/chongqing/co/322199.htm",
                "found_time":"2016-02-22",
                "img":"//image.11467.com/new/2017-06-16/4c9f969fe2f2c0d2c0a94da8b84017c0_small.png",
                "main_product":"火锅串串香,串串香加盟,串串香培训",
                "num_iid":"chongqing/co/322199",
                "regist_capital":"120(万元)",
                "title":"重庆普吉万家餐饮管理有限公司"
            },
            {
                "address":"中国 重庆市渝中区 朝天门长滨路20号海客瀛洲A",
                "detail_url":"https://www.11467.com/chongqing/co/192841.htm",
                "found_time":null,
                "img":null,
                "main_product":"礼品包装 ; 包装盒 ; 礼品盒 ; 茶盒 ; 酒盒 ; 月饼盒 ; 普洱茶饼 ; 个性请柬 ; 个...",
                "num_iid":"chongqing/co/192841",
                "regist_capital":"无需验资(万元)",
                "title":"谢贞东(个体经营)"
            },
            {
                "address":"北京市",
                "detail_url":"https://www.11467.com/beijing/co/691099.htm",
                "found_time":"2011-02-10",
                "img":"//img3.11467.com/2019/06-26/3330062227_small.jpg",
                "main_product":"京弘居老北京涮羊肉,酱帝亿、酱致楿、恋上香与辣火锅,麻辣烫涮涮吧免费加盟、技术转让、技术推广、技术培...",
                "num_iid":"beijing/co/691099",
                "regist_capital":"100(万元)",
                "title":"口福尚品北京科技有限责任公司"
            },
            {
                "address":"嘉定区胜辛南路500号14幢1148室",
                "detail_url":"https://www.11467.com/shanghai/co/261145.htm",
                "found_time":"2003-06-23",
                "img":null,
                "main_product":"火锅燃料 燃料 环保油 酒精燃料 酒精膏 小火锅燃料 木炭替代品",
                "num_iid":"shanghai/co/261145",
                "regist_capital":"50(万元)",
                "title":"上海艾弗恩比宾馆设备有限公司"
            },
            {
                "address":"明月路356号",
                "detail_url":"https://www.11467.com/suining/co/13284.htm",
                "found_time":"2008-11-13",
                "img":"//img3.11467.com/2019/07-22/4022737927_small.jpg",
                "main_product":"生产批发非转基因浓香黄菜籽油,生产批发菜籽油,生产批发食用油,生产批发古榨浓香黄菜籽油,黑菜籽油,生...",
                "num_iid":"suining/co/13284",
                "regist_capital":"2000 万(万元)",
                "title":"遂宁辛农民粮油有限公司"
            },
            {
                "address":"深圳市罗湖区笋岗街道宝安 北路3033号",
                "detail_url":"https://www.11467.com/shenzhen/co/1004198.htm",
                "found_time":null,
                "img":"//img4.11467.com/u/22254162/166808810_small.jpg",
                "main_product":"餐厅家具,酒吧家具,餐桌椅,火锅桌椅,卡座沙发,西餐厅家具,火锅餐厅家具,餐厅桌椅,KTV会所卡座沙...",
                "num_iid":"shenzhen/co/1004198",
                "regist_capital":"100(万元)",
                "title":"深圳运达来家具有限公司"
            },
            {
                "address":"广东省中山市东凤镇东阜四路16号",
                "detail_url":"https://www.11467.com/zhongshan/co/119056.htm",
                "found_time":null,
                "img":null,
                "main_product":"小火锅、火锅炉、电磁火锅炉、火锅专用电磁炉、火锅桌。",
                "num_iid":"zhongshan/co/119056",
                "regist_capital":null,
                "title":"中山市柯若士电器有限公司"
            },
            {
                "address":"广东省佛山市顺德区容桂镇海尾工业区广龙路13号",
                "detail_url":"https://www.11467.com/foshan/co/305311.htm",
                "found_time":"2009-10-25",
                "img":"//image.11467.com/58/7/5807033424_small.jpg",
                "main_product":"商用火锅电磁炉/火锅电陶炉/火锅烧烤炉/火锅锅具用品/大理石火锅餐桌椅/隐藏式不锈钢火锅餐桌系列/电...",
                "num_iid":"foshan/co/305311",
                "regist_capital":"1800(万元)",
                "title":"佛山市全铭火锅餐饮设备有限公司"
            },
            {
                "address":"安徽省芜湖市芜湖县六郎食品工业园",
                "detail_url":"https://www.11467.com/wuhu/co/24478.htm",
                "found_time":"2007-08-23",
                "img":null,
                "main_product":"切片年糕 ; 火锅年糕 ; 水晶年糕 ; 玉米年糕 ; 珍珠圆子 ; 花色年糕 ; 麻薯",
                "num_iid":"wuhu/co/24478",
                "regist_capital":"500万元(万元)",
                "title":"芜湖瑞丰食品有限公司"
            },
            {
                "address":"河北省沧州市新华区新华东路鼓楼广场A铺221铺",
                "detail_url":"https://www.11467.com/cangzhou/co/102184.htm",
                "found_time":"2015-06-30",
                "img":"//img3.11467.com/2019/06-29/748787599_small.jpg",
                "main_product":"食品,餐饮,火锅鸡,餐饮信息咨询服务,餐饮项目策划及投资,食品加工技术咨询及转让,餐饮文化交流及餐饮...",
                "num_iid":"cangzhou/co/102184",
                "regist_capital":"300(万元)",
                "title":"河北零叁壹柒餐饮管理有限公司"
            },
            {
                "address":"兰州市城关区东部副食品批发市场226号",
                "detail_url":"https://www.11467.com/lanzhou/co/60100.htm",
                "found_time":"2000-03-28",
                "img":null,
                "main_product":"雨润高温、低温火腿系列(熏烤火腿、青岛火腿、火锅肠、年糕、散火腿、散肘花、松花肠、琥珀蛋、无淀粉、肘...",
                "num_iid":"lanzhou/co/60100",
                "regist_capital":null,
                "title":"兰州市城关区维天综合商行"
            },
            {
                "address":"山东青岛市开发区江山南路666号1-2904",
                "detail_url":"https://www.11467.com/qingdao/co/182594.htm",
                "found_time":"2014-08-19",
                "img":null,
                "main_product":"旋转火锅设备; 回转火锅设备; 火锅传送带; 自助回转火锅设备; 旋转输送设备小火锅",
                "num_iid":"qingdao/co/182594",
                "regist_capital":"50(万元)",
                "title":"青岛尚品源机器设备有限公司"
            },
            {
                "address":"东莞市道滘镇扶屋水新兴路1号102",
                "detail_url":"https://www.11467.com/qiye/38442173.htm",
                "found_time":"2013-01-14",
                "img":null,
                "main_product":"大碗面,小碗面,红烧排骨味面,手工碗面,手拍捞面,蛋味面,鹅形肠面,香菇鸡汁面,牛肉味面,火锅面及果...",
                "num_iid":"qiye/38442173",
                "regist_capital":"100(万元)",
                "title":"东莞市金饶食品有限公司"
            },
            {
                "address":"高新区关羽路53号",
                "detail_url":"https://www.11467.com/xiangfan/co/53206.htm",
                "found_time":"2014-01-27",
                "img":null,
                "main_product":"节能灶,油烟净化一体机,无烟火锅,酒店用品一站式采购公司",
                "num_iid":"xiangfan/co/53206",
                "regist_capital":"5(万元)",
                "title":"湖北鲁中宝厨业有限公司"
            },
            {
                "address":"安徽省阜阳市临泉县城关镇银泉商城永丰街",
                "detail_url":"https://www.11467.com/jinzhou/co/51146.htm",
                "found_time":"2010-03-16",
                "img":null,
                "main_product":"烧烤炉系列;酒精炉火锅系列;筷子盒系列;保温壶系列;折叠式烧烤炉;固体酒精炉小火锅;筷子消毒机;不锈...",
                "num_iid":"jinzhou/co/51146",
                "regist_capital":"20万元(万元)",
                "title":"李阿静"
            },
            {
                "address":"太康县朱口镇西郭庄302号",
                "detail_url":"https://www.11467.com/qiye/93682925.htm",
                "found_time":"2019-02-15",
                "img":null,
                "main_product":"红薯粉条,红薯宽粉条,火锅专用川粉,宽粉,细粉,酸辣粉,紫薯粉条,土豆粉,粉皮,水晶粉丝,方便自煮酸...",
                "num_iid":"qiye/93682925",
                "regist_capital":"100(万元)",
                "title":"河南孚生食品有限公司"
            },
            {
                "address":"重庆重庆市重庆市观农贸盘溪市场食品大楼1层3通道",
                "detail_url":"https://www.11467.com/chongqing/co/209869.htm",
                "found_time":null,
                "img":null,
                "main_product":"火锅宽苕粉;酸辣粉;年新豆皮;腐竹;豆排",
                "num_iid":"chongqing/co/209869",
                "regist_capital":null,
                "title":"唐忠苹"
            },
            {
                "address":"眉山市东坡区苏源路40号1层",
                "detail_url":"https://www.11467.com/meishan/co/20399.htm",
                "found_time":"2016-07-25",
                "img":null,
                "main_product":"串串香,火锅,冒菜",
                "num_iid":"meishan/co/20399",
                "regist_capital":"100(万元)",
                "title":"四川苏蜀餐饮管理有限公司"
            },
            {
                "address":"江门市蓬江区荷塘镇中泰东路55号1幢2至4层厂房",
                "detail_url":"https://www.11467.com/jiangmen/co/102927.htm",
                "found_time":"2011-06-15",
                "img":null,
                "main_product":"不锈钢汤桶汤煲;不锈钢保温桶;不锈钢蒸笼;不锈钢奶茶桶 提桶 水池桶;复合底桶;不锈钢厚底桶;不锈钢...",
                "num_iid":"jiangmen/co/102927",
                "regist_capital":"30万元 (万元)",
                "title":"江门市蓬江区信昕和五金制品有限公司"
            },
            {
                "address":"广州市天河区风信路1号",
                "detail_url":"https://www.11467.com/guangzhou/co/468642.htm",
                "found_time":"2008-08-08",
                "img":"//img.11467.com/2020/04-22/859356408_small.jpg",
                "main_product":"奶茶加盟,冰淇淋 , 无烟烧烤 ,西式快餐,休闲小吃, 火锅 ,水晶泡泡锅,全自动烧烤, 麻辣烫 ,...",
                "num_iid":"guangzhou/co/468642",
                "regist_capital":"100(万元)",
                "title":"广州壹家人餐饮管理服务有限公司"
            },
            {
                "address":"山东省青岛市市南区山东路40号广发金融大厦140",
                "detail_url":"https://www.11467.com/qingdao/co/194504.htm",
                "found_time":"2006-02-20",
                "img":"//img3.11467.com/2019/11-29/1222897716_small.jpg",
                "main_product":"食品,饮料,食材,火锅,加工机械",
                "num_iid":"qingdao/co/194504",
                "regist_capital":null,
                "title":"青岛蓝博国际会展有限公司"
            },
            {
                "address":"眉山市彭山区彭溪镇迎宾大道中段59号",
                "detail_url":"https://www.11467.com/meishan/co/20771.htm",
                "found_time":"2015-11-26",
                "img":null,
                "main_product":"火锅底料、火锅调味品 串串香’",
                "num_iid":"meishan/co/20771",
                "regist_capital":null,
                "title":"眉山优速商务咨询有限公司彭山分公司"
            },
            {
                "address":"成都市温江区柳城光华大道三段1588号珠江新城国",
                "detail_url":"https://www.11467.com/qiye/93187431.htm",
                "found_time":null,
                "img":null,
                "main_product":"麻辣烫,火锅,串串香,冒菜",
                "num_iid":"qiye/93187431",
                "regist_capital":"100万人民币(万元)",
                "title":"四川麻辣主义餐饮管理有限公司"
            },
            {
                "address":"广东省佛山市顺德区陈村镇赤花区居委会广隆工业区南",
                "detail_url":"https://www.11467.com/qiye/93228952.htm",
                "found_time":"2018-07-12",
                "img":"//img.11467.com/2018/08-23/9016364_small.jpg",
                "main_product":"豆制品,油炸食品,豆三秒响铃卷,炸豆皮,火锅餐饮行业原材料供应",
                "num_iid":"qiye/93228952",
                "regist_capital":"500(万元)",
                "title":"佛山市豆本营食品有限公司"
            },
            {
                "address":"山东省淄博市张店区共青团西路23号富丽商城B20",
                "detail_url":"https://www.11467.com/qiye/68025468.htm",
                "found_time":"2017-05-11",
                "img":"//img.11467.com/2018/11-21/16217993_small.jpg",
                "main_product":"快餐、干炸里脊、炒饭、煲仔饭、大盘鸡、火锅、串串香",
                "num_iid":"qiye/68025468",
                "regist_capital":"300(万元)",
                "title":"山东觅元踪餐饮有限公司"
            },
            {
                "address":"高新区丁豪广场六号楼",
                "detail_url":"https://www.11467.com/qiye/95590414.htm",
                "found_time":"2019-05-17",
                "img":null,
                "main_product":"餐饮展,食材展,火锅展,烧烤展",
                "num_iid":"qiye/95590414",
                "regist_capital":"300万(元)(万元)",
                "title":"山东思创国际会展有限公司"
            },
            {
                "address":"新疆乌鲁木齐市沙依巴克区西虹西路371号SOHO",
                "detail_url":"https://www.11467.com/wulumuqi/co/106407.htm",
                "found_time":"2016-01-08",
                "img":null,
                "main_product":"懒人火锅,麻辣懒人火锅,麻辣自煮火锅",
                "num_iid":"wulumuqi/co/106407",
                "regist_capital":"500万人民币(万元)",
                "title":"新疆懒人食品有限公司"
            },
            {
                "address":"上海市宝山区共和新路5308弄",
                "detail_url":"https://www.11467.com/shanghai/co/54266.htm",
                "found_time":null,
                "img":null,
                "main_product":"商用电磁炉、火锅电磁炉、电磁灶、电磁火锅桌、火锅桌、火锅电陶炉、商用电陶炉、上海电陶炉、光波炉、聚光...",
                "num_iid":"shanghai/co/54266",
                "regist_capital":"30万(万元)",
                "title":"上海隆美精美电磁炉"
            },
            {
                "address":"南京市雨花东路",
                "detail_url":"https://www.11467.com/nanjing/co/115270.htm",
                "found_time":"2008-01-10",
                "img":null,
                "main_product":"1、酒店餐桌和酒店椅、宴会椅子、酒店软包椅;2、咖啡厅沙发、西餐厅沙发、茶餐厅沙发、棋牌...",
                "num_iid":"nanjing/co/115270",
                "regist_capital":"200(万元)",
                "title":"南京酒店家具厂"
            },
            {
                "address":"重庆重庆市北碚区重庆北碚区",
                "detail_url":"https://www.11467.com/chongqing/co/209860.htm",
                "found_time":"2011-06-07",
                "img":null,
                "main_product":"石雕雕刻;浮雕设计;石材雕刻工艺品;石锅;石质栏杆;石雕工艺;石材雕刻;石雕动物;人物石雕;手工石雕...",
                "num_iid":"chongqing/co/209860",
                "regist_capital":"101(万元)",
                "title":"北碚区春艺石材雕刻工艺厂"
            },
            {
                "address":"西华县田口工业园区",
                "detail_url":"https://www.11467.com/zhoukou/co/21414.htm",
                "found_time":"1993-04-28",
                "img":null,
                "main_product":"谷朊粉 ,超级特精粉,超级馒头用粉,高级雪花粉,高筋特精粉,胡辣汤专用面筋,火锅面筋,瑞雪粉,特制一...",
                "num_iid":"zhoukou/co/21414",
                "regist_capital":"人民币5116 万元(万元)",
                "title":"西华县枣花面业有限公司"
            },
            {
                "address":"四川省眉山市洪雅县止戈镇五龙路15号",
                "detail_url":"https://www.11467.com/qiye/27114459.htm",
                "found_time":"2008-03-20",
                "img":null,
                "main_product":"调味油(藤椒油、花椒油、木姜油、熟香菜籽油等);复合调味料(钵钵鸡鸡汁、火锅底料、料哆哆大酱、藤椒捞...",
                "num_iid":"qiye/27114459",
                "regist_capital":"13200(万元)",
                "title":"幺麻子食品股份有限公司"
            },
            {
                "address":"重庆市经开区学府大道2号8幢7-3号(注册地址)",
                "detail_url":"https://www.11467.com/chongqing/co/241461.htm",
                "found_time":"2005-09-12",
                "img":null,
                "main_product":"餐饮; 火锅; 合作加盟、投资开店、经营诊断、企业托管、营运策划、管理培训、技术转让",
                "num_iid":"chongqing/co/241461",
                "regist_capital":"15万人民币(万元)",
                "title":"重庆本色联盟企业管理有限公司"
            },
            {
                "address":"贵州省毕节市织金县官寨乡萝卜村桥上组",
                "detail_url":"https://www.11467.com/qiye/94110598.htm",
                "found_time":"2017-09-14",
                "img":null,
                "main_product":"各类炒菜.各类火锅.本地土鸡.酸汤鱼",
                "num_iid":"qiye/94110598",
                "regist_capital":"30000(万元)",
                "title":"织金县官寨乡黔贵家常饭馆"
            },
            {
                "address":"苏州市吴中区木渎镇金枫南路9号1幢813室",
                "detail_url":"https://www.11467.com/qiye/98688991.htm",
                "found_time":"2018-04-03",
                "img":null,
                "main_product":"华东食材展会,鱼博会,上海618华食展,火锅展,预制菜展,食品机械展会",
                "num_iid":"qiye/98688991",
                "regist_capital":"500(万元)",
                "title":"苏州兰普林特会展服务有限公司"
            },
            {
                "address":"沈阳市苏家屯区雪松东路1-12号(1-2-1)",
                "detail_url":"https://www.11467.com/qiye/42662134.htm",
                "found_time":"2015-11-13",
                "img":null,
                "main_product":"餐饮食材展;火锅展;东北火锅节",
                "num_iid":"qiye/42662134",
                "regist_capital":"50(万元)",
                "title":"沈阳信展会展有限公司"
            },
            {
                "address":"苏州市吴中经济开发区吴中大道66号厂房",
                "detail_url":"https://www.11467.com/qiye/93577265.htm",
                "found_time":"2019-01-01",
                "img":"//img.11467.com/2019/02-02/41522788_small.jpg",
                "main_product":"老鹅汤,草本老鹅汤,鹅斗士老鹅汤,老鹅煲,老鹅火锅",
                "num_iid":"qiye/93577265",
                "regist_capital":"100(万元)",
                "title":"苏州鹅斗士餐饮管理有限公司"
            }
        ],
        "page":"1",
        "page_size":50,
        "pagecount":"20",
        "q":"火锅",
        "real_total_results":"2751",
        "total_results":"2751",
        "_ddf":"sqw"
    },
    "error_code":"0000",
    "reason":"ok",
    "secache":"636cfc9132d0035a42ae7234f405187a",
    "secache_time":1703397966,
    "secache_date":"2023-12-24 14:06:06",
    "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.741",
    "server_time":"Beijing/2023-12-24 14:06:06",
    "client_ip":"127.0.0.1",
    "call_args":{
        "q":"火锅"
    },
    "api_type":"sqw",
    "server_memory":"3.07MB",
    "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": "sqw",
  "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(微信同号)