万邦顺企网获取企业详情 API 返回值说明

item_get-获取企业详情 [查看演示] API测试工具 注册开通

sqw.item_get

公共参数

请求地址: https://api-gw.onebound.cn/sqw/item_get

名称 类型 必须 描述
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版本
请求参数

请求参数:item_id=qiye/106587332

参数说明:item_id:商品id,

响应参数

Version: Date:2023-12-24

名称 类型 必须 示例值 描述
item
item[] 0 详情数据
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.onebound.cn/sqw/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=qiye/106587332"
<?php

// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
$method = "GET";
$url = "https://api-gw.onebound.cn/sqw/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=qiye/106587332";
$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_get",
	                "api_params"=>array (
  'item_id' => 'qiye/106587332',
)
                )
            );
 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_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=qiye/106587332";
		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_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=qiye/106587332";
	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_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=qiye/106587332"
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_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=qiye/106587332", 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_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({"item_id":"qiye\/106587332"})// 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_get",
     "api_params": {"item_id":"qiye\/106587332"}//item_id=qiye/106587332,#具体参数请参考文档说明
     },
     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_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=qiye/106587332")
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_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=qiye/106587332")!
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_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=qiye/106587332"];

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_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=qiye/106587332";
  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_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=qiye/106587332");
         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_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=qiye/106587332", (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_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=qiye/106587332")
    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_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=qiye/106587332")?;
    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_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=qiye/106587332")
content(r)
url = "https://api-gw.onebound.cn/sqw/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&item_id=qiye/106587332";
response = webread(url);
disp(response);
响应示例
{
    "item":{
        "basic_doc":{
            "business_scope":"",
            "category":"投资咨询公司",
            "city":"揭阳企业网",
            "create_time":"",
            "issuing_authority":"",
            "main_product":"斗音小店业务办理,包含办理营业执照➕开通斗音小店➕蓝V认证➕开通商品橱窗购物车+开通精选联盟➕指导上架+特殊类目报白定向邀约入驻(珠宝,文玩,酒水,内衣,生鲜水果,书法字画,茶具陶瓷,木制品,古钱币,印章,钱币 手工艺品,铜器,沉香,根雕 木雕,二手数码 钱币纪念币 奇石 石雕 教育小店报白源头收单)",
            "short_name":"镜缘传媒",
            "shunqi_code":"106587332",
            "status":"在业"
        },
        "crumbs":[
            {
                "name":"公司黄页",
                "position":0,
                "url":"https://b2b.11467.com/"
            },
            {
                "name":"揭阳黄页",
                "position":1,
                "url":"https://www.11467.com/jieyang/"
            },
            {
                "name":"揭阳商务服务公司",
                "position":2,
                "url":"https://www.11467.com/jieyang/search/11739.htm"
            },
            {
                "name":"揭阳咨询服务公司",
                "position":3,
                "url":"https://www.11467.com/jieyang/search/12120.htm"
            },
            {
                "name":"揭阳投资咨询公司",
                "position":4,
                "url":"https://www.11467.com/jieyang/search/12024.htm"
            },
            {
                "name":"镜缘传媒",
                "position":5,
                "url":"http://www.11467.com/qiye/106587332.htm"
            }
        ],
        "desc_short":"镜缘传媒-我们一直致力于帮助商家和企业客户解决各种斗音问题,专注斗音特殊类目报白!有丰富的经验和网络资源,可以帮助商家节约时间和成本,实现低门槛入驻,快捷、正规。   斗音小店业务办理,包含办理营业执照➕开通斗音小店➕蓝V认证➕开通商品橱窗购物车+开通精选联盟➕指导上架+特殊类目报白定向邀约入驻(珠...",
        "detail_url":"https://www.11467.com/qiye/106587332.htm",
        "nick":"",
        "num_iid":"qiye/106587332",
        "pic_url":"//img.11467.com/2022/07-14/4650333325_small.jpg",
        "products":[
            {
                "pic_url":"//img.11467.com/2023/06-14/1260597326_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"快手医疗器械听诊器怎么报白开通,需要哪些条件要求",
                "url":"https://yichun.11467.com/info/21246254.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/05-16/1081273803_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"海外版抖音Tiktok代运营从何入手?",
                "url":"https://jieyang.11467.com/info/14237694.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/05-16/1081273803_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"海外版抖音Tiktok代运营的运营小技巧",
                "url":"https://product.11467.com/info/14237773.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/05-16/1075527194_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"抖音小店刀具类目报白有什么方便快捷的办法?",
                "url":"https://jieyang.11467.com/info/14237915.htm"
            },
            {
                "pic_url":"//img.11467.com/2023/06-14/1260597326_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"看来“小天才真香”这句话,在宠物领域同样适用。找镜缘报白入驻抖音",
                "url":"https://yichun.11467.com/info/21408755.htm"
            },
            {
                "pic_url":"//img.11467.com/2023/06-14/1260597326_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"宠物医疗费昂贵是事实,宠物医院不赚钱也是事实,为何会出现这种情况呢?",
                "url":"https://yichun.11467.com/info/21407212.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/07-05/3646753010_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"抖音直播卖二手车得要二手车评估证件没有怎么办?",
                "url":"https://jieyang.11467.com/info/14863672.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/05-16/1081273803_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"Tiktok代运营 Shop店怎么开通?Tiktok代运营 Shop)驻条件",
                "url":"https://jieyang.11467.com/info/14729358.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/06-14/744965671_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"抖音新规感受分能够补销量提高吗?感受分太低了。",
                "url":"https://jieyang.11467.com/info/14646687.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/05-17/2210439405_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"在网上个体工商户运营执照办理流程",
                "url":"https://jieyang.11467.com/info/14631308.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/05-16/1101623945_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"抖音蓝v认证名称怎么修改?为什么一直通不过审核?",
                "url":"https://jieyang.11467.com/info/14572724.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/07-14/4507370306_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"抖音小店开通流程详细指导(抖音小店怎么开通)",
                "url":"https://jieyang.11467.com/info/15306904.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/07-14/4650333325_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"抖音直播间怎么留住人?抖音直播间留住人有什么技巧",
                "url":"https://jieyang.11467.com/info/15106596.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/07-04/1109124489_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"快手小店直播黄金和田玉翡翠需要什么要求?快手珠宝玉石翡翠小店如何开通,如何报白",
                "url":"https://hetian.11467.com/info/14757567.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/05-17/2210439405_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"如何办理抖音营业执照?教你三种方法!",
                "url":"https://jieyang.11467.com/info/14619248.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/06-18/1159822044_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"短视频号珠宝首饰品类代报白",
                "url":"https://jieyang.11467.com/info/14571940.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/05-16/1075569491_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"儿童玩具如何入驻抖音小店?",
                "url":"https://jieyang.11467.com/info/14293982.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/05-16/1066336660_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"海鲜干货鱿鱼干怎么在抖音小店上架?",
                "url":"https://jieyang.11467.com/info/14271864.htm"
            },
            {
                "pic_url":"//img.11467.com/2023/07-04/1887815655_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"抖音入驻官方旗舰店和企业店,品牌shoushu书哪里不一样?",
                "url":"https://fuwu.11467.com/info/23461293.htm"
            },
            {
                "pic_url":"//img.11467.com/2023/06-14/1260597326_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"抖音教育培训类目怎么入驻呢?需要什么资质和条件?找镜缘",
                "url":"https://yichun.11467.com/info/21429934.htm"
            },
            {
                "pic_url":"//img.11467.com/2023/06-14/1260597326_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"面向商用/家用宠物寄养场景,小宠科技现已自主研发“Pilton宠尔顿宠物智能舱”产品。",
                "url":"https://yichun.11467.com/info/21408894.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/07-14/4507370306_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"巨量千川与原投放平台的的变化及优势",
                "url":"https://jieyang.11467.com/info/15306957.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/07-14/4507370306_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"抖音小店如何添加酒水类目?酒水类抖音小店怎么开通?",
                "url":"https://jieyang.11467.com/info/14937410.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/07-05/3646753010_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"蓝v改名有什么技巧呢,如何改成自己想要的名字,",
                "url":"https://jieyang.11467.com/info/14863843.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/07-05/3646753010_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"抖音小店评分规则是什么?如何提升抖音小店评分呢?",
                "url":"https://jieyang.11467.com/info/14828507.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/07-05/1300274615_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"抖音商家没有第三方平台链接可以开通抖音小店吗?",
                "url":"https://jieyang.11467.com/info/14828492.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/07-04/1109124489_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"快手小店卖珠宝珍珠黄金和田玉翡翠钻石绿松石怎么开通,怎么报白",
                "url":"https://hetian.11467.com/info/14757593.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/07-04/1109124489_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"快手小店怎么入驻珠宝首饰,报白步骤是哪些",
                "url":"https://jieyang.11467.com/info/14757365.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/06-14/393926977_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"抖音小店酒类开通报白后能开闪电购吗?白酒怎么上架抖店?",
                "url":"https://jieyang.11467.com/info/14729743.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/05-17/2295678605_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"抖音茶叶品类报白流程是什么?抖音小店茶报白怎么做?",
                "url":"https://jieyang.11467.com/info/14703394.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/05-17/2210439405_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"新营业执照可以迅速开实体店呢?公告期前就可以迅速开实体店呢?",
                "url":"https://jieyang.11467.com/info/14578399.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/06-14/435647149_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"抖音店珠宝玉文玩类如何开设抖音店?如何进入直播基地可异地发货?",
                "url":"https://jieyang.11467.com/info/14565628.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/05-16/1103426484_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"抖音报白直播卖货小店报白需要些什么流程?",
                "url":"https://jieyang.11467.com/info/14298796.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/05-17/2103227583_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"抖音小店直播间小程序小风车如何开通?抖店如何挂载小风车?",
                "url":"https://jieyang.11467.com/info/14273869.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/05-17/2277051206_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"抖音小店和抖音商品橱窗有什么区别",
                "url":"https://jieyang.11467.com/info/14252329.htm"
            },
            {
                "pic_url":"//img.11467.com/2023/06-14/1260597326_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"小宠科技的“宠尔顿宠物舱”集成了涵盖吃喝拉撒睡六大自研智能养宠功能找镜缘入驻报白抖音小店",
                "url":"https://yichun.11467.com/info/21408986.htm"
            },
            {
                "pic_url":"//img.11467.com/2023/06-14/1260597326_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"包括宠粮、营养品、洗护、医疗在内,宠物经济近些年增长明显找镜缘报白入驻抖音小店",
                "url":"https://yichun.11467.com/info/21408937.htm"
            },
            {
                "pic_url":"//img.11467.com/2023/06-14/1260597326_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"宠物医院创业门槛相对较低,但前期投入并不低宠物医疗怎么入驻抖音小店?找镜缘",
                "url":"https://yichun.11467.com/info/21407272.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/07-14/4507370306_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"各种类目入驻抖音小店,需要准备什么资料呢?",
                "url":"https://jieyang.11467.com/info/15240441.htm"
            },
            {
                "pic_url":"//img.11467.com/2022/07-14/4650333325_small.jpg",
                "property":"价格:面议/2023-11-04",
                "title":"抖音小店如何开通蓝v?",
                "url":"https://jieyang.11467.com/info/15013918.htm"
            }
        ],
        "title":"镜缘传媒",
        "_ddf":"sqw",
        "format_check":"fail"
    },
    "error":"data error",
    "translate_status":"",
    "translate_time":0,
    "language":{
        "default_lang":"cn",
        "current_lang":"cn"
    },
    "reason":"data error 接口文档:https://open.onebound.cn/help/api/sqw.item_get.html",
    "error_code":"5000",
    "cache":0,
    "api_info":"today: max:15000 all[=++];expires:2031-01-01",
    "execution_time":"0.794",
    "server_time":"Beijing/2023-12-24 13:57:45",
    "client_ip":"127.0.0.1",
    "call_args":{
        "num_iid":"qiye/106587332"
    },
    "api_type":"sqw",
    "server_memory":"3.02MB",
    "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(微信同号)