万邦爱回收获取询价项 API 返回值说明

item_get_inquir-获取询价项 [查看演示] API测试工具 注册开通

ahs.item_get_inquir

公共参数

请求地址: https://api-gw.onebound.cn/ahs/item_get_inquir

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

请求参数:productid=66429

参数说明:productid:品牌ID

响应参数

Version: Date:

名称 类型 必须 示例值 描述
item
item[] 0 获取询价项
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.onebound.cn/ahs/item_get_inquir/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&productid=66429"
<?php

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

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/ahs/item_get_inquir/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&productid=66429";
  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/ahs/item_get_inquir/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&productid=66429");
         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/ahs/item_get_inquir/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&productid=66429", (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/ahs/item_get_inquir/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&productid=66429")
    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/ahs/item_get_inquir/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&productid=66429")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

library(httr)
r <- GET("https://api-gw.onebound.cn/ahs/item_get_inquir/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&productid=66429")
content(r)
url = "https://api-gw.onebound.cn/ahs/item_get_inquir/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&productid=66429";
response = webread(url);
disp(response);
响应示例
{
  "item": {
    "disabledUrl": "https://m.aihuishou.com/n/#/page/privacy",
    "guaranteePeriodType": null,
    "ppvDisabledTips": null,
    "ppvIsEnvironmentalRecyclingTips": null,
    "product": {
      "bizType": 1,
      "brandId": 52,
      "categoryId": 6,
      "id": 66429,
      "imgUrl": "https://sr.aihuishou.com/image/169969402044425812.png",
      "isEnvironmentalRecycling": false,
      "name": "iPad Air5",
      "topPrice": 3500
    },
    "propertyNames": [
      {
        "bizType": 1,
        "configProperty": false,
        "displayIcon": null,
        "id": 130,
        "illustrationContent": null,
        "interactType": null,
        "isPhenomenon": true,
        "isSkuProperty": false,
        "items": [
          {
            "description": "请您在回收前先退出",
            "displayIcon": null,
            "id": 275,
            "illustrationContent": {
              "diagrams": [
                {
                  "fileUrl": "https://sr.aihuishou.com/image/59a94004186f2d4818000011.png",
                  "id": 1594
                }
              ],
              "id": 682,
              "summary": null,
              "text": "&lt;span style=\"font-family:Microsoft YaHei;\"&gt;爱回收会验证(1)还原激活苹果手机时无账号;(2)IMEI查询苹果数据无账号。两者均满足才是iCloud已注销。&lt;/span&gt;"
            },
            "isCurrentDeviceHidden": false,
            "isCurrentDeviceSelected": false,
            "isEnvironmentalRecycling": false,
            "isNoAdditional": false,
            "isOverProtection": false,
            "isPerfect": false,
            "isPhenomenonItem": true,
            "isPreferred": false,
            "name": "苹果个人账号可退出",
            "noAdditionalTips": null,
            "otherType": null,
            "ppvIds": [3111],
            "shouldRelease": false,
            "tags": [],
            "weight": 1
          },
          {
            "description": "无法回收",
            "displayIcon": null,
            "id": 276,
            "illustrationContent": {
              "diagrams": [
                {
                  "fileUrl": "https://sr.aihuishou.com/image/59a93ff7b47ad6000000000d.png",
                  "id": 1593
                }
              ],
              "id": 683,
              "summary": null,
              "text": "&lt;span style=\"font-family:Microsoft YaHei;\"&gt;iCloud是无法通过还原出厂设置来解除的。以防质检时需要询问您,或者影响回收价格,请您解除iCloud账户后再回收。&lt;/span&gt;"
            },
            "isCurrentDeviceHidden": false,
            "isCurrentDeviceSelected": false,
            "isEnvironmentalRecycling": true,
            "isNoAdditional": true,
            "isOverProtection": false,
            "isPerfect": false,
            "isPhenomenonItem": true,
            "isPreferred": false,
            "name": "苹果个人账号无法退出",
            "noAdditionalTips": "无法回收",
            "otherType": null,
            "ppvIds": [3112],
            "shouldRelease": false,
            "tags": [
              "0003",
              "0007"
            ],
            "weight": 2
          }
        ],
        "name": "苹果个人账号是否可退出",
        "releaseItems": [
          {
            "bizType": null,
            "configProperty": false,
            "displayIcon": null,
            "id": 564,
            "illustrationContent": {
              "diagrams": [
                {
                  "fileUrl": "https://sr.aihuishou.com/image/59a93fc1b47ad60000000005.png",
                  "id": 1591
                },
                {
                  "fileUrl": "https://sr.aihuishou.com/image/59a93fc6b47ad60000000009.png",
                  "id": 1592
                }
              ],
              "id": 681,
              "summary": null,
              "text": "&lt;span style=\"font-family:Microsoft YaHei;\"&gt;iCloud是无法通过还原出厂设置来解除的。以防质检时需要询问您,或者影响回收价格,请您解除iCloud账户后再回收。&lt;/span&gt;"
            },
            "interactType": null,
            "isPhenomenon": false,
            "isSkuProperty": false,
            "items": [
              {
                "description": null,
                "displayIcon": null,
                "id": 3111,
                "illustrationContent": {
                  "diagrams": [
                    {
                      "fileUrl": "https://sr.aihuishou.com/image/59a94004186f2d4818000011.png",
                      "id": 1594
                    }
                  ],
                  "id": 682,
                  "summary": null,
                  "text": "&lt;span style=\"font-family:Microsoft YaHei;\"&gt;爱回收会验证(1)还原激活苹果手机时无账号;(2)IMEI查询苹果数据无账号。两者均满足才是iCloud已注销。&lt;/span&gt;"
                },
                "isCurrentDeviceHidden": false,
                "isCurrentDeviceSelected": false,
                "isEnvironmentalRecycling": false,
                "isNoAdditional": false,
                "isOverProtection": false,
                "isPerfect": false,
                "isPhenomenonItem": false,
                "isPreferred": true,
                "name": "账号可退出(请先退出再回收)",
                "noAdditionalTips": null,
                "otherType": null,
                "ppvIds": [3111],
                "shouldRelease": false,
                "tags": [],
                "weight": 0
              },
              {
                "description": "无法回收",
                "displayIcon": null,
                "id": 3112,
                "illustrationContent": {
                  "diagrams": [
                    {
                      "fileUrl": "https://sr.aihuishou.com/image/59a93ff7b47ad6000000000d.png",
                      "id": 1593
                    }
                  ],
                  "id": 683,
                  "summary": null,
                  "text": "&lt;span style=\"font-family:Microsoft YaHei;\"&gt;iCloud是无法通过还原出厂设置来解除的。以防质检时需要询问您,或者影响回收价格,请您解除iCloud账户后再回收。&lt;/span&gt;"
                },
                "isCurrentDeviceHidden": false,
                "isCurrentDeviceSelected": false,
                "isEnvironmentalRecycling": true,
                "isNoAdditional": true,
                "isOverProtection": false,
                "isPerfect": false,
                "isPhenomenonItem": false,
                "isPreferred": false,
                "name": "无法退出(为了您的信息安全,此类机器无法回收)",
                "noAdditionalTips": "无法回收",
                "otherType": null,
                "ppvIds": [3112],
                "shouldRelease": false,
                "tags": [
                  "0003",
                  "0007"
                ],
                "weight": 6
              }
            ],
            "name": "登录账户",
            "releaseItems": [],
            "showType": 1,
            "subStepItems": [],
            "type": 3,
            "weight": 1
          }
        ],
        "showType": null,
        "subStepItems": [],
        "type": -999,
        "weight": 0
      },
      {
        "bizType": 2,
        "configProperty": false,
        "displayIcon": null,
        "id": 133,
        "illustrationContent": null,
        "interactType": null,
        "isPhenomenon": true,
        "isSkuProperty": false,
        "items": [
          {
            "description": null,
            "displayIcon": null,
            "id": 1983,
            "illustrationContent": {
              "diagrams": [
                {
                  "fileUrl": "https://sr.aihuishou.com/image/590c038b5d82bcb41700001d.png",
                  "id": 1118
                }
              ],
              "id": 150,
              "summary": null,
              "text": "&lt;p&gt;\n\t&lt;span style=\"font-size:16px;\"&gt;&lt;/span&gt;&lt;span style=\"font-family:Microsoft YaHei;font-size:16px;\"&gt; &lt;/span&gt; \n&lt;/p&gt;\n&lt;p&gt;\n\t&lt;span style=\"font-family:Microsoft YaHei;\"&gt;未开封或仅打开过包装,机器未激活,配件齐全未使用。只有满足以上三点,才是全新机器。&lt;/span&gt;\n&lt;/p&gt;\n&lt;p&gt;\n\t&lt;br /&gt;\n&lt;/p&gt;\n&lt;p&gt;\n\t&lt;br /&gt;\n&lt;/p&gt;\n&lt;p&gt;\n\t&lt;span style=\"font-family:Microsoft YaHei;\"&gt;&lt;/span&gt; \n&lt;/p&gt;"
            },
            "isCurrentDeviceHidden": false,
            "isCurrentDeviceSelected": false,
            "isEnvironmentalRecycling": false,
            "isNoAdditional": false,
            "isOverProtection": false,
            "isPerfect": false,
            "isPhenomenonItem": false,
            "isPreferred": false,
            "name": "全新包装未拆封",
            "noAdditionalTips": null,
            "otherType": null,
            "ppvIds": [1983],
            "shouldRelease": false,
            "tags": [],
            "weight": 1
          },
          {
            "description": null,
            "displayIcon": null,
            "id": 1984,
            "illustrationContent": {
              "diagrams": [
                {
                  "fileUrl": "https://sr.aihuishou.com/image/590c0368c4c234000000008a.png",
                  "id": 1119
                }
              ],
              "id": 456,
              "summary": null,
              "text": "&lt;span style=\"font-family:Microsoft YaHei;\"&gt;机身外壳、耳机孔、按键等处无任何瑕疵。&lt;/span&gt;"
            },
            "isCurrentDeviceHidden": false,
            "isCurrentDeviceSelected": false,
            "isEnvironmentalRecycling": false,
            "isNoAdditional": false,
            "isOverProtection": false,
            "isPerfect": false,
            "isPhenomenonItem": false,
            "isPreferred": true,
            "name": "外壳完美无瑕疵",
            "noAdditionalTips": null,
            "otherType": null,
            "ppvIds": [1984],
            "shouldRelease": false,
            "tags": [],
            "weight": 2
          },
          {
            "description": null,
            "displayIcon": null,
            "id": 1985,
            "illustrationContent": {
              "diagrams": [
                {
                  "fileUrl": "https://sr.aihuishou.com/image/590c03805d82bcb417000019.png",
                  "id": 1116
                }
              ],
              "id": 89,
              "summary": null,
              "text": "&lt;p&gt;\n\t&lt;span style=\"font-size:16px;font-family:Microsoft YaHei;\"&gt;&lt;span style=\"font-size:12px;font-family:Microsoft YaHei;\"&gt;边框、背板或者机身LOGO,光照下可见划痕。&lt;/span&gt;&lt;/span&gt; \n&lt;/p&gt;\n&lt;p&gt;\n\t&lt;span style=\"font-size:16px;font-family:Microsoft YaHei;\"&gt;&lt;span style=\"font-size:12px;\"&gt;&lt;/span&gt;&lt;br /&gt;\n&lt;/span&gt; \n&lt;/p&gt;"
            },
            "isCurrentDeviceHidden": false,
            "isCurrentDeviceSelected": false,
            "isEnvironmentalRecycling": false,
            "isNoAdditional": false,
            "isOverProtection": false,
            "isPerfect": false,
            "isPhenomenonItem": false,
            "isPreferred": false,
            "name": "细微划痕,无磕碰",
            "noAdditionalTips": null,
            "otherType": null,
            "ppvIds": [1985],
            "shouldRelease": false,
            "tags": [],
            "weight": 5
          },
          {
            "description": null,
            "displayIcon": null,
            "id": 1987,
            "illustrationContent": {
              "diagrams": [
                {
                  "fileUrl": "https://sr.aihuishou.com/image/590c0357c4c2340000000086.png",
                  "id": 1117
                }
              ],
              "id": 90,
              "summary": null,
              "text": "&lt;p&gt;\n\t&lt;span style=\"font-size:16px;font-family:Microsoft YaHei;\"&gt;&lt;span style=\"font-size:12px;\"&gt;边框背板有磕碰、裂痕、掉漆;机身按键、LOGO脱落,可拆卸后盖缺失;摄像头、耳机孔处碎裂;屏幕翘起;机身人为刻字。&lt;/span&gt;&lt;/span&gt; \n&lt;/p&gt;\n&lt;p&gt;\n\t&lt;span style=\"font-size:16px;font-family:Microsoft YaHei;\"&gt;&lt;span style=\"font-size:12px;\"&gt;&lt;/span&gt;&lt;span style=\"font-size:12px;\"&gt;&lt;/span&gt;&lt;br /&gt;\n&lt;/span&gt; \n&lt;/p&gt;"
            },
            "isCurrentDeviceHidden": false,
            "isCurrentDeviceSelected": false,
            "isEnvironmentalRecycling": false,
            "isNoAdditional": false,
            "isOverProtection": false,
            "isPerfect": false,
            "isPhenomenonItem": false,
            "isPreferred": false,
            "name": "磕碰掉漆,或边框磨损",
            "noAdditionalTips": null,
            "otherType": null,
            "ppvIds": [1987],
            "shouldRelease": false,
            "tags": [],
            "weight": 7
          },
          {
            "description": null,
            "displayIcon": null,
            "id": 6888,
            "illustrationContent": null,
            "isCurrentDeviceHidden": false,
            "isCurrentDeviceSelected": false,
            "isEnvironmentalRecycling": false,
            "isNoAdditional": false,
            "isOverProtection": false,
            "isPerfect": false,
            "isPhenomenonItem": false,
            "isPreferred": false,
            "name": "外壳破损/缺失,或刻印字画",
            "noAdditionalTips": null,
            "otherType": null,
            "ppvIds": [6888],
            "shouldRelease": false,
            "tags": [],
            "weight": 9
          }
        ],
        "name": "边框背板",
        "releaseItems": [
          {
            "bizType": null,
            "configProperty": false,
            "displayIcon": null,
            "id": 303,
            "illustrationContent": null,
            "interactType": null,
            "isPhenomenon": false,
            "isSkuProperty": false,
            "items": [
              {
                "description": null,
                "displayIcon": null,
                "id": 1983,
                "illustrationContent": {
                  "diagrams": [
                    {
                      "fileUrl": "https://sr.aihuishou.com/image/590c038b5d82bcb41700001d.png",
                      "id": 1118
                    }
                  ],
                  "id": 150,
                  "summary": null,
                  "text": "&lt;p&gt;\n\t&lt;span style=\"font-size:16px;\"&gt;&lt;/span&gt;&lt;span style=\"font-family:Microsoft YaHei;font-size:16px;\"&gt; &lt;/span&gt; \n&lt;/p&gt;\n&lt;p&gt;\n\t&lt;span style=\"font-family:Microsoft YaHei;\"&gt;未开封或仅打开过包装,机器未激活,配件齐全未使用。只有满足以上三点,才是全新机器。&lt;/span&gt;\n&lt;/p&gt;\n&lt;p&gt;\n\t&lt;br /&gt;\n&lt;/p&gt;\n&lt;p&gt;\n\t&lt;br /&gt;\n&lt;/p&gt;\n&lt;p&gt;\n\t&lt;span style=\"font-family:Microsoft YaHei;\"&gt;&lt;/span&gt; \n&lt;/p&gt;"
                },
                "isCurrentDeviceHidden": false,
                "isCurrentDeviceSelected": false,
                "isEnvironmentalRecycling": false,
                "isNoAdditional": false,
                "isOverProtection": false,
                "isPerfect": false,
                "isPhenomenonItem": false,
                "isPreferred": false,
                "name": "全新包装未拆封",
                "noAdditionalTips": null,
                "otherType": null,
                "ppvIds": [1983],
                "shouldRelease": false,
                "tags": [],
                "weight": 1
              },
              {
                "description": null,
                "displayIcon": null,
                "id": 1984,
                "illustrationContent": {
                  "diagrams": [
                    {
                      "fileUrl": "https://sr.aihuishou.com/image/590c0368c4c234000000008a.png",
                      "id": 1119
                    }
                  ],
                  "id": 456,
                  "summary": null,
                  "text": "&lt;span style=\"font-family:Microsoft YaHei;\"&gt;机身外壳、耳机孔、按键等处无任何瑕疵。&lt;/span&gt;"
                },
                "isCurrentDeviceHidden": false,
                "isCurrentDeviceSelected": false,
                "isEnvironmentalRecycling": false,
                "isNoAdditional": false,
                "isOverProtection": false,
                "isPerfect": false,
                "isPhenomenonItem": false,
                "isPreferred": true,
                "name": "外壳完美无瑕疵",
                "noAdditionalTips": null,
                "otherType": null,
                "ppvIds": [1984],
                "shouldRelease": false,
                "tags": [],
                "weight": 2
              },
              {
                "description": null,
                "displayIcon": null,
                "id": 1985,
                "illustrationContent": {
                  "diagrams": [
                    {
                      "fileUrl": "https://sr.aihuishou.com/image/590c03805d82bcb417000019.png",
                      "id": 1116
                    }
                  ],
                  "id": 89,
                  "summary": null,
                  "text": "&lt;p&gt;\n\t&lt;span style=\"font-size:16px;font-family:Microsoft YaHei;\"&gt;&lt;span style=\"font-size:12px;font-family:Microsoft YaHei;\"&gt;边框、背板或者机身LOGO,光照下可见划痕。&lt;/span&gt;&lt;/span&gt; \n&lt;/p&gt;\n&lt;p&gt;\n\t&lt;span style=\"font-size:16px;font-family:Microsoft YaHei;\"&gt;&lt;span style=\"font-size:12px;\"&gt;&lt;/span&gt;&lt;br /&gt;\n&lt;/span&gt; \n&lt;/p&gt;"
                },
                "isCurrentDeviceHidden": false,
                "isCurrentDeviceSelected": false,
                "isEnvironmentalRecycling": false,
                "isNoAdditional": false,
                "isOverProtection": false,
                "isPerfect": false,
                "isPhenomenonItem": false,
                "isPreferred": false,
                "name": "细微划痕,无磕碰",
                "noAdditionalTips": null,
                "otherType": null,
                "ppvIds": [1985],
                "shouldRelease": false,
                "tags": [],
                "weight": 5
              },
              {
                "description": null,
                "displayIcon": null,
                "id": 1987,
                "illustrationContent": {
                  "diagrams": [
                    {
                      "fileUrl": "https://sr.aihuishou.com/image/590c0357c4c2340000000086.png",
                      "id": 1117
                    }
                  ],
                  "id": 90,
                  "summary": null,
                  "text": "&lt;p&gt;\n\t&lt;span style=\"font-size:16px;font-family:Microsoft YaHei;\"&gt;&lt;span style=\"font-size:12px;\"&gt;边框背板有磕碰、裂痕、掉漆;机身按键、LOGO脱落,可拆卸后盖缺失;摄像头、耳机孔处碎裂;屏幕翘起;机身人为刻字。&lt;/span&gt;&lt;/span&gt; \n&lt;/p&gt;\n&lt;p&gt;\n\t&lt;span style=\"font-size:16px;font-family:Microsoft YaHei;\"&gt;&lt;span style=\"font-size:12px;\"&gt;&lt;/span&gt;&lt;span style=\"font-size:12px;\"&gt;&lt;/span&gt;&lt;br /&gt;\n&lt;/span&gt; \n&lt;/p&gt;"
                },
                "isCurrentDeviceHidden": false,
                "isCurrentDeviceSelected": false,
                "isEnvironmentalRecycling": false,
                "isNoAdditional": false,
                "isOverProtection": false,
                "isPerfect": false,
                "isPhenomenonItem": false,
                "isPreferred": false,
                "name": "磕碰掉漆,或边框磨损",
                "noAdditionalTips": null,
                "otherType": null,
                "ppvIds": [1987],
                "shouldRelease": false,
                "tags": [],
                "weight": 7
              },
              {
                "description": null,
                "displayIcon": null,
                "id": 6888,
                "illustrationContent": null,
                "isCurrentDeviceHidden": false,
                "isCurrentDeviceSelected": false,
                "isEnvironmentalRecycling": false,
                "isNoAdditional": false,
                "isOverProtection": false,
                "isPerfect": false,
                "isPhenomenonItem": false,
                "isPreferred": false,
                "name": "外壳破损/缺失,或刻印字画",
                "noAdditionalTips": null,
                "otherType": null,
                "ppvIds": [6888],
                "shouldRelease": false,
                "tags": [],
                "weight": 9
              }
            ],
            "name": "边框背板",
            "releaseItems": [],
            "showType": 1,
            "subStepItems": [],
            "type": 3,
            "weight": 12
          }
        ],
        "showType": null,
        "subStepItems": [
          {
            "id": 1173,
            "illustrationContents": [
              {
                "desc": null,
                "image": "https://ahs-trade-in.oss-cn-hangzhou.aliyuncs.com/phenomenons-step-item-img/MTYzOTQ2NDEzNzI4N18xJUU4JUJFJUI5JUU2JUExJTg2JUU4JTgzJThDJUU2JTlEJUJGLSVFNSVBNCU5NiVFNSVBMyVCMyVFNyVBMCVCNCVFNiU4RCU5Ri0xSkQ0QTg1MDExNzAzNDk1OTg5NTA1.jpg",
                "name": "破损/缺失",
                "weight": 1
              },
              {
                "desc": null,
                "image": "https://ahs-trade-in.oss-cn-hangzhou.aliyuncs.com/phenomenons-step-item-img/JUU1JUE0JTk2JUU1JUEzJUIzJUU1JTg4JUJCJUU1JUFEJTk3MTcwMzQ5NjAwNzIxNg==.jpg",
                "name": "刻印字画",
                "weight": 2
              }
            ],
            "isDelete": null,
            "name": "外壳有破损/缺失,或刻印字画?(有其中之一或多项)",
            "units": [
              {
                "description": "外壳破损/缺失,或刻印字画",
                "isCurrentDeviceSelected": false,
                "isEnvironmentalRecycling": false,
                "isNoAdditional": false,
                "isOverProtection": false,
                "isPerfect": false,
                "name": "有",
                "ppvId": 6888,
                "tags": [],
                "weight": 1
              },
              {
                "description": null,
                "isCurrentDeviceSelected": false,
                "isEnvironmentalRecycling": false,
                "isNoAdditional": false,
                "isOverProtection": false,
                "isPerfect": false,
                "name": "没有",
                "ppvId": null,
                "tags": [],
                "weight": 2
              }
            ],
            "version": null,
            "weight": 1
          },
          {
            "id": 1174,
            "illustrationContents": [
              {
                "desc": null,
                "image": "https://ahs-trade-in.oss-cn-hangzhou.aliyuncs.com/phenomenons-step-item-img/JUU1JUE0JTk2JUU1JUEzJUIzJUU3JUEzJTk1JUU3JUEyJUIwMTcwMzQ5NjAyMDk0MQ==.jpg",
                "name": "磕碰/掉漆",
                "weight": 1
              },
              {
                "desc": null,
                "image": "https://ahs-trade-in.oss-cn-hangzhou.aliyuncs.com/phenomenons-step-item-img/JUU1JUE0JTk2JUU1JUEzJUIzJUU3JUEzJUE4JUU2JThEJTlGMTcwMzQ5NjAzMzIzNg==.jpg",
                "name": "边框磨损",
                "weight": 2
              }
            ],
            "isDelete": null,
            "name": "外壳有磕碰掉漆,或边框有磨损?",
            "units": [
              {
                "description": "磕碰掉漆,或边框磨损",
                "isCurrentDeviceSelected": false,
                "isEnvironmentalRecycling": false,
                "isNoAdditional": false,
                "isOverProtection": false,
                "isPerfect": false,
                "name": "有",
                "ppvId": 1987,
                "tags": [],
                "weight": 1
              },
              {
                "description": null,
                "isCurrentDeviceSelected": false,
                "isEnvironmentalRecycling": false,
                "isNoAdditional": false,
                "isOverProtection": false,
                "isPerfect": false,
                "name": "没有",
                "ppvId": null,
                "tags": [],
                "weight": 2
              }
            ],
            "version": null,
            "weight": 2
          },
          {
            "id": 1175,
            "illustrationContents": [
              {
                "desc": null,
                "image": "https://ahs-trade-in.oss-cn-hangzhou.aliyuncs.com/phenomenons-step-item-img/JUU1JUE0JTk2JUU1JUEzJUIzJUU3JUJCJTg2JUU1JUJFJUFFJUU1JTg4JTkyJUU3JTk3JTk1MTcwMzQ5NjA0NjA0MQ==.jpg",
                "name": "细微划痕",
                "weight": 1
              }
            ],
            "isDelete": null,
            "name": "外壳有细微划痕/瑕疵?",
            "units": [
              {
                "description": "细微划痕,无磕碰",
                "isCurrentDeviceSelected": false,
                "isEnvironmentalRecycling": false,
                "isNoAdditional": false,
                "isOverProtection": false,
                "isPerfect": false,
                "name": "有",
                "ppvId": 1985,
                "tags": [],
                "weight": 1
              },
              {
                "description": "外壳完美无瑕疵",
                "isCurrentDeviceSelected": false,
                "isEnvironmentalRecycling": false,
                "isNoAdditional": false,
                "isOverProtection": false,
                "isPerfect": false,
                "name": "没有",
                "ppvId": 1984,
                "tags": [],
                "weight": 2
              }
            ],
            "version": null,
            "weight": 3
          }
        ],
        "type": -999,
        "weight": 0
      },
    ],
    "skus": [
      [1958, 1962, 1968, 1991, 13865],
      [1958, 1962, 3236, 1991, 13865],
      [1958, 11468, 1968, 1991, 13865],
      [1958, 11468, 3236, 1991, 13865],
      [1960, 1962, 1968, 1991, 13865],
      [1960, 1962, 3236, 1991, 13865],
      [1960, 11468, 1968, 1991, 13865],
      [1960, 11468, 3236, 1991, 13865],
      [1958, 1962, 1968, 12483, 13865],
      [1958, 1962, 3236, 12483, 13865],
      [1958, 11468, 1968, 12483, 13865],
      [1958, 11468, 3236, 12483, 13865],
      [1960, 1962, 1968, 12483, 13865],
      [1960, 1962, 3236, 12483, 13865],
      [1960, 11468, 1968, 12483, 13865],
      [1960, 11468, 3236, 12483, 13865],
      [1959, 1962, 3236, 12483, 13865],
      [1959, 11468, 1968, 1991, 13865],
      [1959, 11468, 3236, 1991, 13865],
      [1959, 11468, 1968, 12483, 13865],
      [1959, 11468, 3236, 12483, 13865],
      [1959, 1962, 3236, 1991, 13865],
      [1959, 1962, 1968, 1991, 13865],
      [1959, 1962, 1968, 12483, 13865]
    ],
    "_ddf": "ahs"
  },
  "error": "",
  "reason": "",
  "error_code": "0000",
  "cache": 0,
  "api_info": "today: max:15000 all[=++];expires:2031-01-01",
  "execution_time": "0.769",
  "server_time": "Beijing/2024-09-29 10:29:56",
  "client_ip": "127.0.0.1",
  "call_args": [],
  "api_type": "ahs",
  "server_memory": "3.7MB",
  "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/2024-06-20 03:44:00",
  "call_args": [],
  "api_type": "ahs",
  "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:3142401606 3142401606 万邦科技企业微信