凡邦拼多多商品获取 API 返回值说明

item_sync_get-商品获取 [查看演示] API测试工具 注册开通

pinduoduo.item_sync_get

公共参数

请求地址: https://api-gw.fan-b.com/pinduoduo/item_sync_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版本
请求参数

请求参数:num_iid=596398685274

参数说明:num_iid:商品ID

响应参数

Version: Date:

名称 类型 必须 示例值 描述
item
item[] 0 异步获取商品原数据
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.fan-b.com/pinduoduo/item_sync_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=596398685274"
<?php

// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.fan-b.com/help/demo/sdk/demo-sign.php
$method = "GET";
$url = "https://api-gw.fan-b.com/pinduoduo/item_sync_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=596398685274";
$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.fan-b.com/help/demo/sdk/onebound-api-sdk.zip
include ("ObApiClient.php");

$obapi = new otao\ObApiClient();
$obapi->api_url = "http://api-gw.fan-b.com/";
$obapi->api_urls = array("http://api-gw.fan-b.com/","http://api-1.fan-b.com/");//备用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" =>"pinduoduo",
	                "api_name" =>"item_sync_get",
	                "api_params"=>array (
  'num_iid' => '596398685274',
)
                )
            );
 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.fan-b.com/pinduoduo/item_sync_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=596398685274";
		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.fan-b.com/pinduoduo/item_sync_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=596398685274";
	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.fan-b.com/pinduoduo/item_sync_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=596398685274"
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.fan-b.com/pinduoduo/item_sync_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=596398685274", 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.fan-b.com/pinduoduo/item_sync_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({"num_iid":"596398685274"})// 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.fan-b.com", // 
    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":"pinduoduo",
     "api_name" : "item_sync_get",
     "api_params": {"num_iid":"596398685274"}//num_iid=596398685274,#具体参数请参考文档说明
     },
     function(e){
        document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
     }
);
</script>
require "net/http"
require "uri"
url = URI("https://api-gw.fan-b.com/pinduoduo/item_sync_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=596398685274")
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.fan-b.com/pinduoduo/item_sync_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=596398685274")!
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.fan-b.com/pinduoduo/item_sync_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=596398685274"];

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.fan-b.com/pinduoduo/item_sync_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=596398685274";
  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.fan-b.com/pinduoduo/item_sync_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=596398685274");
         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.fan-b.com/pinduoduo/item_sync_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=596398685274", (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.fan-b.com/pinduoduo/item_sync_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=596398685274")
    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.fan-b.com/pinduoduo/item_sync_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=596398685274")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

library(httr)
r <- GET("https://api-gw.fan-b.com/pinduoduo/item_sync_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=596398685274")
content(r)
url = "https://api-gw.fan-b.com/pinduoduo/item_sync_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=596398685274";
response = webread(url);
disp(response);
响应示例
{
        "item": {
          "server_time": 1743197157,
          "destination_url": "order_checkout.html",
          "destination_type": 2,
          "goods": {
            "goods_id": 684399851264,
            "cat_id": 17700,
            "mall_id": 818030150,
            "market_price": 750,
            "quantity": 1000,
            "allowed_region": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,30,31,32",
            "country": "",
            "warehouse": "",
            "goods_type": 1,
            "cost_template_id": 600897092585030,
            "vas_template_id": [],
            "cost_province_codes": "5,9,19,20,21,28,29",
            "has_cost": 0,
            "customer_num": 2,
            "options": [54, 7, 9, 60, 13],
            "new_options": [129, 163, 132, 164, 135, 7, 9, 13, 84, 117, 182, 54, 216, 188, 60],
            "goods_name": "【店铺热销】芦笋种子四季种植蔬菜之王进口绿芦笋种籽抗热耐寒高营养蔬菜种子",
            "share_desc": "芦笋种子四季种植蔬菜之王进口绿芦笋种籽抗热耐寒高营养蔬菜种子",
            "share_link": "goods.html?goods_id=684399851264&page_from=0&pxq_secret_key=NBYSP5ZOXI7UNS4SYWRIHIHFQHVGR6WZIOTGINQUKFSQUX57DUGQ&_oak_share_snapshot_num=58&_oak_share_detail_id=7574442409&_oak_share_time=1743197157",
            "route": "goods.html",
            "preview_share_link": "mall_quality_assurance.html?_t_timestamp=comm_share_landing&goods_id=684399851264",
            "side_sales_tip": "已抢235件",
            "sold_quantity": 235,
            "is_app": 0,
            "app_new": 0,
            "we_chat_only": 0,
            "app_client_only": 0,
            "is_onsale": 1,
            "is_sku_onsale": 1,
            "hd_url": "https://img.pddpic.com/mms-material-img/2024-10-06/b871a9f2-0d40-4bd2-9089-91b176da1490.jpeg",
            "thumb_url": "https://img.pddpic.com/gaudit-image/2024-12-14/1c1dec9ab0bc1823bba07563ad7812f2.jpeg",
            "hd_thumb_url": "https://img.pddpic.com/gaudit-image/2024-12-14/bcc9689d22098f9ddad91c7e7155fd01.jpeg",
            "image_url": "https://img.pddpic.com/gaudit-image/2024-12-14/1c1dec9ab0bc1823bba07563ad7812f2.jpeg",
            "banner": {
              "id": 817233,
              "url": "https://commimg.pddpic.com/oms_img_ng/2023-10-17/042463ae-82b4-46aa-8a47-e8d2e2053649.png",
              "default_url": "https://commimg.pddpic.com/oms_img_ng/2023-10-17/042463ae-82b4-46aa-8a47-e8d2e2053649.png",
              "new_url": "https://commimg.pddpic.com/oms_img_ng/2023-10-17/042463ae-82b4-46aa-8a47-e8d2e2053649.png",
              "imp_tracks": [
                {
                  "page_el_sn": "531684"
                }
              ],
              "url_v2": "https://commimg.pddpic.com/oms_img_ng/2023-10-17/042463ae-82b4-46aa-8a47-e8d2e2053649.png",
              "url_v2_h": 74,
              "url_v2_w": 686,
              "type": 0
            },
            "images": [
              {
                "id": 817233,
                "url": "https://commimg.pddpic.com/oms_img_ng/2023-10-17/042463ae-82b4-46aa-8a47-e8d2e2053649.png"
              }
            ],
            "second_hand": 0,
            "is_pre_sale": 0,
            "pre_sale_time": 0,
            "show_rec": 0,
            "show_rec_title": 1,
            "call_waist_rec_extra_params": {
              "shield_mall_goods_rec": 1
            },
            "is_mall_rec": 0,
            "rv_image": 1,
            "rv": 1,
            "gpv": 2,
            "is_mall_dsr": 1,
            "skip_goods": "0",
            "shipment_limit_second": 172800,
            "gallery": [
              {
                "id": 1255762627716,
                "goods_id": 684399851264,
                "url": "https://img.pddpic.com/mms-material-img/2024-10-06/19f2d6aa-f59e-455e-809c-a2d29eadb4e7.jpeg",
                "width": 800,
                "height": 800,
                "priority": 19,
                "type": 2,
                "enable_share": 1
              },
              {
                "id": 1255762627715,
                "goods_id": 684399851264,
                "url": "https://img.pddpic.com/mms-material-img/2024-10-06/f62a6607-54b9-4a03-b811-2f469d8cddce.jpeg",
                "width": 800,
                "height": 800,
                "priority": 18,
                "type": 2,
                "enable_share": 1
              },
              {
                "id": 1255762627714,
                "goods_id": 684399851264,
                "url": "https://img.pddpic.com/mms-material-img/2024-10-06/4c8b2716-ada6-47fd-bc22-f3bd731bbe2b.jpeg",
                "width": 500,
                "height": 500,
                "priority": 17,
                "type": 2,
                "enable_share": 1
              },
              {
                "id": 1255762627713,
                "goods_id": 684399851264,
                "url": "https://img.pddpic.com/mms-material-img/2024-10-06/19cd14b0-edc2-4249-8b59-7d19ad4e1c3f.jpeg",
                "width": 500,
                "height": 500,
                "priority": 16,
                "type": 2,
                "enable_share": 1
              },
              {
                "id": 1255762627712,
                "goods_id": 684399851264,
                "url": "https://img.pddpic.com/mms-material-img/2024-10-06/dd3ad177-aee9-475d-9482-ebd147d50eeb.png",
                "width": 800,
                "height": 800,
                "priority": 15,
                "type": 2,
                "enable_share": 1
              },
              {
                "id": 1255762627711,
                "goods_id": 684399851264,
                "url": "https://img.pddpic.com/mms-material-img/2024-10-06/f3043f7f-c0c8-42c2-a6f5-5479000e585c.png",
                "width": 800,
                "height": 800,
                "priority": 14,
                "type": 2,
                "enable_share": 1
              },
              {
                "id": 1255762627710,
                "goods_id": 684399851264,
                "url": "https://img.pddpic.com/mms-material-img/2024-10-06/36d7ab7b-b97a-4570-b78a-81b7c20a7bc3.jpeg",
                "width": 800,
                "height": 800,
                "priority": 13,
                "type": 2,
                "enable_share": 1
              },
              {
                "id": 1255762627709,
                "goods_id": 684399851264,
                "url": "https://img.pddpic.com/mms-material-img/2024-10-06/c88dc141-456e-4bb0-9d0b-3570f857499a.png",
                "width": 800,
                "height": 800,
                "priority": 12,
                "type": 2,
                "enable_share": 1
              },
              {
                "id": 1255762627708,
                "goods_id": 684399851264,
                "url": "https://img.pddpic.com/mms-material-img/2024-10-06/a64b5365-736a-4dd8-a6d9-9458bb4dfaf5.jpeg",
                "width": 800,
                "height": 800,
                "priority": 11,
                "type": 2,
                "enable_share": 1
              },
              {
                "id": 1255762627707,
                "goods_id": 684399851264,
                "url": "https://img.pddpic.com/mms-material-img/2024-10-06/b871a9f2-0d40-4bd2-9089-91b176da1490.jpeg",
                "width": 800,
                "height": 800,
                "priority": 10,
                "type": 2,
                "enable_share": 1
              },
              {
                "id": 3,
                "goods_id": 684399851264,
                "url": "https://img.pddpic.com/mms-material-img/2024-10-06/b871a9f2-0d40-4bd2-9089-91b176da1490.jpeg",
                "width": 800,
                "height": 800,
                "priority": 9,
                "type": 2,
                "enable_share": 1
              }
            ],
            "decoration": [
              {
                "floor_id": 1,
                "key": "DecImage",
                "type": "image",
                "priority": -1,
                "contents": [
                  {
                    "img_url": "https://img.pddpic.com/mms-material-img/2024-10-06/b871a9f2-0d40-4bd2-9089-91b176da1490.jpeg",
                    "height": 800,
                    "width": 800
                  }
                ],
                "enable_share": 1
              },
              {
                "floor_id": 68974077829,
                "key": "DecImage",
                "type": "image",
                "priority": 0,
                "contents": [
                  {
                    "img_url": "https://img.pddpic.com/mms-material-img/2024-10-06/b871a9f2-0d40-4bd2-9089-91b176da1490.jpeg",
                    "height": 800,
                    "width": 800
                  }
                ],
                "enable_share": 1
              },
              {
                "floor_id": 68974077830,
                "key": "DecImage",
                "type": "image",
                "priority": 1,
                "contents": [
                  {
                    "img_url": "https://img.pddpic.com/mms-material-img/2024-10-06/a64b5365-736a-4dd8-a6d9-9458bb4dfaf5.jpeg",
                    "height": 800,
                    "width": 800
                  }
                ],
                "enable_share": 1
              },
              {
                "floor_id": 68974077831,
                "key": "DecImage",
                "type": "image",
                "priority": 2,
                "contents": [
                  {
                    "img_url": "https://img.pddpic.com/mms-material-img/2024-10-06/c88dc141-456e-4bb0-9d0b-3570f857499a.png",
                    "height": 800,
                    "width": 800
                  }
                ],
                "enable_share": 1
              },
              {
                "floor_id": 68974077832,
                "key": "DecImage",
                "type": "image",
                "priority": 3,
                "contents": [
                  {
                    "img_url": "https://img.pddpic.com/mms-material-img/2024-10-06/36d7ab7b-b97a-4570-b78a-81b7c20a7bc3.jpeg",
                    "height": 800,
                    "width": 800
                  }
                ],
                "enable_share": 1
              },
              {
                "floor_id": 68974077833,
                "key": "DecImage",
                "type": "image",
                "priority": 4,
                "contents": [
                  {
                    "img_url": "https://img.pddpic.com/mms-material-img/2024-10-06/f3043f7f-c0c8-42c2-a6f5-5479000e585c.png",
                    "height": 800,
                    "width": 800
                  }
                ],
                "enable_share": 1
              },
              {
                "floor_id": 68974077834,
                "key": "DecImage",
                "type": "image",
                "priority": 5,
                "contents": [
                  {
                    "img_url": "https://img.pddpic.com/mms-material-img/2024-10-06/dd3ad177-aee9-475d-9482-ebd147d50eeb.png",
                    "height": 800,
                    "width": 800
                  }
                ],
                "enable_share": 1
              },
              {
                "floor_id": 68974077835,
                "key": "DecImage",
                "type": "image",
                "priority": 6,
                "contents": [
                  {
                    "img_url": "https://img.pddpic.com/mms-material-img/2024-10-06/19cd14b0-edc2-4249-8b59-7d19ad4e1c3f.jpeg",
                    "height": 500,
                    "width": 500
                  }
                ],
                "enable_share": 1
              },
              {
                "floor_id": 68974077836,
                "key": "DecImage",
                "type": "image",
                "priority": 7,
                "contents": [
                  {
                    "img_url": "https://img.pddpic.com/mms-material-img/2024-10-06/4c8b2716-ada6-47fd-bc22-f3bd731bbe2b.jpeg",
                    "height": 500,
                    "width": 500
                  }
                ],
                "enable_share": 1
              },
              {
                "floor_id": 68974077837,
                "key": "DecImage",
                "type": "image",
                "priority": 8,
                "contents": [
                  {
                    "img_url": "https://img.pddpic.com/mms-material-img/2024-10-06/f62a6607-54b9-4a03-b811-2f469d8cddce.jpeg",
                    "height": 800,
                    "width": 800
                  }
                ],
                "enable_share": 1
              },
              {
                "floor_id": 68974077838,
                "key": "DecImage",
                "type": "image",
                "priority": 9,
                "contents": [
                  {
                    "img_url": "https://img.pddpic.com/mms-material-img/2024-10-06/19f2d6aa-f59e-455e-809c-a2d29eadb4e7.jpeg",
                    "height": 800,
                    "width": 800
                  }
                ],
                "enable_share": 1
              }
            ],
            "group": [
              {
                "id": 121317232936,
                "group_id": 121317232936,
                "goods_id": 684399851264,
                "price": 0,
                "customer_num": 1,
                "start_time": 1451577600,
                "end_time": 2082729600,
                "duration": 86400,
                "buy_limit": 999999,
                "order_limit": 999999,
                "is_open": 1,
                "regular_limit": 0,
                "regular_limit_duration": 0
              },
              {
                "id": 121317232937,
                "group_id": 121317232937,
                "goods_id": 684399851264,
                "price": 0,
                "customer_num": 3,
                "start_time": 1451577600,
                "end_time": 2082729600,
                "duration": 86400,
                "buy_limit": 999999,
                "order_limit": 999999,
                "is_open": 1,
                "regular_limit": 0,
                "regular_limit_duration": 0
              }
            ],
            "goods_property_type": 0,
            "property_card_click": 0,
            "goods_property": [
              {
                "key": "品牌",
                "values": [
                  "种子"
                ],
                "ref_pid": 310,
                "reference_id": 813573
              },
              {
                "key": "适种区域",
                "values": [
                  "全国各省"
                ],
                "ref_pid": 2347,
                "reference_id": 0
              },
              {
                "key": "植物品种",
                "values": [
                  "芦笋"
                ],
                "ref_pid": 1360,
                "reference_id": 0
              },
              {
                "key": "植物类别",
                "values": [
                  "蔬菜种子"
                ],
                "ref_pid": 1893,
                "reference_id": 0
              },
              {
                "key": "包装方式",
                "values": [
                  "包装"
                ],
                "ref_pid": 677,
                "reference_id": 0
              },
              {
                "key": "生长属性",
                "values": [
                  "多年生"
                ],
                "ref_pid": 1978,
                "reference_id": 0
              },
              {
                "key": "难易程度",
                "values": [
                  "简单"
                ],
                "ref_pid": 1979,
                "reference_id": 0
              },
              {
                "key": "播种季节",
                "values": [
                  "不限季节"
                ],
                "ref_pid": 1986,
                "reference_id": 0
              },
              {
                "key": "开花季节",
                "values": [
                  "不开花"
                ],
                "ref_pid": 1984,
                "reference_id": 0
              },
              {
                "key": "种子生产许可证号",
                "values": [
                  "14108120240144"
                ],
                "ref_pid": 2354,
                "reference_id": 0
              }
            ],
            "property_show_num": 6,
            "tag": 90018,
            "tag_icon": [
              {
                "id": 90018,
                "url": "https://mcdn.pinduoduo.com/upload/duorentuantag/14319590-6db4-4dd7-b7a0-c3e7508c7360.png",
                "width": 123,
                "height": 51
              },
              {
                "id": 20013,
                "url": "https://commimg.pddpic.com/oms_img_ng/2025-03-26/82f6a932-aa9a-4bff-85bf-56da6b3e02c1.png",
                "width": 183,
                "height": 51
              }
            ],
            "event_type": 0,
            "has_promotion": 1,
            "has_activity": 1,
            "created_at": 1734111926,
            "is_cold_goods": 0,
            "off_sale_type": -1,
            "is_app_flow": 1,
            "oversea_type": 0,
            "show_history_group": 0,
            "open_in_festival": 0,
            "is_hidden": 0,
            "status": 1,
            "check_quantity": 1,
            "sku_type": 0,
            "short_name": "芦笋种子四季种植蔬菜之王进口绿芦笋种籽抗热耐寒高营养蔬菜种子",
            "brand_id": 813573,
            "spu_id": 0,
            "service_promise_version": 0,
            "default_sku_id": 1687797611170,
            "new_share_title": {
              "price": "0.58元 ",
              "suf": "芦笋种子四季种植蔬菜之王进口绿芦笋种籽抗热耐寒高营养蔬菜种子 拼多多",
              "not_null": true
            },
            "sku_preview_group_buy_txt": "去拼单",
            "hot_goods_from_gin": false,
            "cat_id_1": 17671,
            "cat_id_2": 17677,
            "cat_id_3": 17700,
            "cat_id_4": 0,
            "bottom_notice": {
              "notice": "",
              "notice_type": 0,
              "priority": 1,
              "type": 0
            }
          },
          "sku": [
            {
              "sku_id": 1687797611170,
              "goods_id": 684399851264,
              "thumb_url": "https://img.pddpic.com/mms-material-img/2024-10-06/a4e52791-19ec-4e30-a425-03b470806344.png",
              "init_quantity": 0,
              "quantity": 58,
              "limit_quantity": 999999,
              "sold_quantity": 0,
              "default_quantity": 58,
              "is_onsale": 1,
              "spec": "16624875483,1965738110",
              "specs": [
                {
                  "spec_key": "型号",
                  "spec_value": "芦笋种子【多年生】",
                  "spec_key_id": 1473,
                  "spec_value_id": 16624875483,
                  "custom": false
                },
                {
                  "spec_key": "款式",
                  "spec_value": "两粒试种",
                  "spec_key_id": 1218,
                  "spec_value_id": 1965738110,
                  "custom": false
                }
              ],
              "price": 0,
              "normal_price": 290,
              "group_price": 58,
              "old_group_price": 190,
              "market_price": 0,
              "weight": 0,
              "yellow_label_list": [
                {
                  "label_text": "第二件6.1折",
                  "label_type": "second_piece_x_discount"
                }
              ],
              "preview_priority": 0,
              "start_time": 0,
              "end_time": 0,
              "static_limit_quantity": 4,
              "attribute": "{\"skuPreSaleTime\":0}",
              "normal_save_price": 232,
              "side_car_labels": [
                {
                  "display_type": 5,
                  "url": "https://commimg.pddpic.com/upload/ddpay/e609e7a6-8a09-444c-a9d9-a6bf59552324.gif.slim.gif",
                  "width": 16,
                  "height": 16,
                  "margin_left": 0,
                  "margin_right": 3
                },
                {
                  "display_type": 0,
                  "text": "快要抢光",
                  "font_color": "#E02E24",
                  "font_size": 14
                }
              ]
            }
          ],
          "price": {
            "line_price": 750,
            "price_style": 0,
            "browser_price_style": 0,
            "min_on_sale_group_price": 58,
            "max_on_sale_group_price": 58,
            "min_on_sale_normal_price": 290,
            "max_on_sale_normal_price": 290,
            "min_group_price": 58,
            "max_group_price": 58,
            "max_normal_price": 290,
            "min_normal_price": 290,
            "old_min_on_sale_group_price": 190,
            "old_max_on_sale_group_price": 190,
            "old_min_group_price": 190,
            "old_max_group_price": 190,
            "unselect_normal_save_price": 232,
            "new_price_prefix": "多人团价"
          },
          "activity_collection": {
            "activity": {
              "activity_id": 7574442409,
              "detail_id": 7574442409,
              "activity_type": 50,
              "sub_activity_type": 0,
              "activity_start_time": 1738951618,
              "activity_end_time": 1802023618,
              "total_quantity": 60112,
              "remain_quantity": 59972,
              "cost_type": 0,
              "activity_options": [19, 29, 15],
              "relation_type": 0,
              "play_type": 0,
              "hidden_in_neighbor": false,
              "is_app": false,
              "target_customer_num": 0,
              "status": 1,
              "user_activity_limit": 4,
              "regular_limit_duration": 604800,
              "shopping_merge_type": 0,
              "play_options": [],
              "view_type": 2,
              "sale_level_type": 0
            }
          },
          "service_promise": [
            {
              "id": 1,
              "type": "全场包邮",
              "type_color": "#58595B",
              "dialog_type": "全场包邮",
              "dialog_type_color": "#151516",
              "desc": "所有商品包邮",
              "top": 0,
              "top_type": 0,
              "navigation": 0,
              "navigation_url": "",
              "detail_hidden": 0
            },
            {
              "id": 2,
              "type": "7天无理由退货",
              "type_color": "#58595B",
              "dialog_type": "7天无理由退货",
              "dialog_type_color": "#151516",
              "desc": "满足相应条件时,消费者可申请“7天无理由退货”,其中定制订单不支持“7天无理由退货”",
              "top": 0,
              "top_type": 0,
              "navigation": 0,
              "navigation_url": "",
              "detail_hidden": 0
            },
            {
              "id": 13,
              "type": "48小时发货",
              "type_color": "#58595B",
              "dialog_type": "48小时发货",
              "dialog_type_color": "#151516",
              "desc": "多人团成团后将在48小时内发货,若未在48小时内发货,消费者将会收到至少3元无门槛代金券",
              "top": 0,
              "top_type": 0,
              "navigation": 0,
              "navigation_url": "",
              "detail_hidden": 0
            },
            {
              "id": 40,
              "type": "先用后付",
              "type_color": "#58595B",
              "dialog_type": "先用后付",
              "dialog_type_color": "#151516",
              "desc": "支持0元下单,先用后付。主动或自动确认收货后,才会自动付款。如不满意可申请售后,全额退款成功则无需付款",
              "top": 0,
              "top_type": 0,
              "navigation": 0,
              "navigation_url": "",
              "detail_hidden": 0
            }
          ],
          "ui": {
            "new_price_section": {
              "is_normal": 0,
              "type": "multi_group",
              "price": "0.58",
              "price_rich": [
                {
                  "txt": "0",
                  "font": 28,
                  "type": 1,
                  "can_hidden": false,
                  "min_font": 19
                },
                {
                  "txt": ".58",
                  "font": 15,
                  "type": 1,
                  "can_hidden": false,
                  "min_font": 13
                }
              ],
              "prefix": "多人团价",
              "prefix_rich": [
                {
                  "txt": "多人团价",
                  "font": 14,
                  "type": 1
                },
                {
                  "type": 2,
                  "space": 2
                },
                {
                  "txt": "¥",
                  "font": 15,
                  "type": 1
                }
              ],
              "color": "#FFFFFF",
              "bg_color": "#FF165E",
              "tag_desc": "立省1.32元",
              "tag_color": "#FF165E",
              "tag_bg_color": "#FFECD2",
              "desc_labels": [
                "原拼单价 ¥1.9",
                "已抢235件",
                "快要抢光"
              ],
              "desc_color": "#FFE8EF",
              "line_color": "#FFB9CF",
              "banner": {
                "bg_url": "https://funimg.pddpic.com/common/brand/f2c63728-00fd-4fee-b66b-d237952d77db.png.slim.png",
                "time_top_margin": 35
              },
              "imp_tracks": [
                {
                  "extra": {
                    "single_price": "2.9",
                    "line_price": "7.5",
                    "sales_tip": "已抢235件",
                    "tag_desc": "立省1.32元",
                    "type": 15,
                    "pindan_price": "0.58",
                    "desc_labels": "原拼单价 ¥1.9, 已抢235件, 快要抢光"
                  },
                  "page_el_sn": "5049756"
                },
                {
                  "extra": [],
                  "page_el_sn": "7884722"
                },
                {
                  "extra": [],
                  "page_el_sn": "7884722"
                },
                {
                  "extra": [],
                  "page_el_sn": "7884722"
                },
                {
                  "extra": [],
                  "page_el_sn": "7884722"
                }
              ],
              "is_elder": 0,
              "use_new_desc_labels_rule": false
            },
            "new_bottom_section": {
              "left_button": {
                "title": [
                  {
                    "txt": "¥",
                    "font": 19,
                    "type": 1,
                    "can_hidden": false,
                    "min_font": 14
                  },
                  {
                    "type": 2,
                    "space": 1
                  },
                  {
                    "txt": "2",
                    "font": 19,
                    "type": 1,
                    "can_hidden": false,
                    "min_font": 14
                  },
                  {
                    "txt": ".9",
                    "font": 13,
                    "type": 1,
                    "can_hidden": false,
                    "min_font": 14
                  }
                ],
                "desc": "单独购买",
                "click_action": "directBuy",
                "text_color": "#FFFFFF",
                "bg_color": "#F4ABA7",
                "text_click_color": "#F9E0DF",
                "bg_click_color": "#EB9894",
                "imp_tracks": [
                  {
                    "extra": {
                      "type": 1
                    },
                    "page_el_sn": "99809"
                  }
                ],
                "click_track": {
                  "extra": {
                    "type": 1
                  },
                  "page_el_sn": "99809"
                }
              },
              "right_button": {
                "title": [
                  {
                    "txt": "¥",
                    "font": 19,
                    "type": 1,
                    "can_hidden": false,
                    "min_font": 14
                  },
                  {
                    "type": 2,
                    "space": 1
                  },
                  {
                    "txt": "0",
                    "font": 19,
                    "type": 1,
                    "can_hidden": false,
                    "min_font": 14
                  },
                  {
                    "txt": ".58",
                    "font": 13,
                    "type": 1,
                    "can_hidden": false,
                    "min_font": 14
                  }
                ],
                "desc": "3人团专享",
                "click_action": "groupBuy",
                "text_color": "#FFFFFF",
                "bg_color": "#E02E24",
                "text_click_color": "#EDBBB8",
                "bg_click_color": "#C51E14",
                "use_backup": 0,
                "imp_tracks": [
                  {
                    "extra": {
                      "type": 2
                    },
                    "page_el_sn": "99811"
                  }
                ],
                "click_track": {
                  "extra": {
                    "type": 2
                  },
                  "page_el_sn": "99811"
                }
              }
            },
            "title_section": {
              "channel_icon": {
                "id": 90018,
                "url": "https://mcdn.pinduoduo.com/upload/duorentuantag/14319590-6db4-4dd7-b7a0-c3e7508c7360.png",
                "width": 123,
                "height": 51
              },
              "pay_part": {
                "type": 2,
                "icon": {
                  "id": 2,
                  "url": "https://funimg.pddpic.com/common/transac_subsidiary/863ff256-89b2-4b7b-906f-8e8c6b9e2b22.png.slim.png",
                  "width": 16,
                  "height": 16,
                  "click_notice": "支持0元下单,先用后付,确认收货后才会自动付款。如不满意可申请售后,全额退款成功则无需付款",
                  "click_url": "https://funimg.pddpic.com/common/transac_subsidiary/f4bb42ea-6f75-453c-b375-daf606f6e962.png.slim.png"
                },
                "text": {
                  "txt": "支持0元下单,确认收货后再付款",
                  "color": "#25B513",
                  "prefix_txt": "先用后付",
                  "click_color": "#1F9347",
                  "background_color": "#EEF9ED",
                  "background_click_color": "#DCF3D9"
                },
                "style": 2
              },
              "channel_icon_bef": [
                {
                  "id": 90018,
                  "url": "https://mcdn.pinduoduo.com/upload/duorentuantag/14319590-6db4-4dd7-b7a0-c3e7508c7360.png",
                  "width": 123,
                  "height": 51
                },
                {
                  "id": 20013,
                  "url": "https://commimg.pddpic.com/oms_img_ng/2025-03-26/82f6a932-aa9a-4bff-85bf-56da6b3e02c1.png",
                  "width": 183,
                  "height": 51
                }
              ]
            },
            "live_section": {
              "on_live": 0,
              "float_from_type": 1,
              "float_info": {
                "if_goods_show": "false",
                "replay_info": "{\"width\":360,\"height\":640,\"floatWindowAddBorder\":false,\"recommendOnewayRequestError\":false,\"feed_id\":\"6540260345226486074\",\"mall_id\":null,\"event_id\":2186934025,\"event_feed_id\":\"6540260345226486074\",\"show_id\":\"6540260345226486074\",\"total_pv\":null,\"link_url\":\"live_room.html?ext=%7B%22feed_scene_id%22%3A651%7D&show_red_box=0&promotion_ui_style=2&biz_type=1&scene_id=50&goods_id=684399851264&use_hub=1&feed_id=6540260345226486074&page_from=601109&sub_biz_type=101&container_hub_type=hub%2Fzb_promotions_scene%2Fweak&head_ids=6540260345226486074&hub_type=hub%2Fzb_promotions_scene%2Fweak&video_from_link=goods.html%3Fgoods_id%3D684399851264&location_required=0\",\"video_url\":null,\"duration_millis\":null,\"goods_id\":684399851264,\"is_fake_customer_mode\":false,\"cover_url\":\"https://video-snapshot.pddpic.com/lupus-cover/59712f22d04d1f11a17ebc1a15f01c7db6002a37.pdd.000001.jpeg\",\"small_window_player_info\":\"{\\"if_h265\\":false,\\"if_soft_h265\\":false,\\"video_url_info\\":\\"{\\\\"h265_videos\\\\":[],\\\\"videos\\\\":[{\\\\"bitrate\\\\":345441,\\\\"duration\\\\":5047,\\\\"height\\\\":640,\\\\"host_list\\\\":[{\\\\"host\\\\":\\\\"video3-3.pddpic.com\\\\"}],\\\\"is_default\\\\":true,\\\\"url\\\\":\\\\"http://video3-3.pddpic.com/tower-video-side/1dbad48d16cea3cdd1ae892ee16ea1b0bef87b98.crop.highlights.f20.mp4?k=377c5ac01b0eaf2d5eef6cb0e1ee66b4&t=1743456357\\\\",\\\\"width\\\\":360}]}\\"}\",\"replay_windows_prec\":\"{\\"related_feed_id\\":\\"6540260345226486074\\"}\",\"float_windows_tips\":\"商品讲解\",\"float_windows_style\":null,\"is_float_window_add_border\":false}",
                "type": "1"
              }
            },
            "bubble_section": {
              "show_bubble": 1
            },
            "sku_section": {
              "view_style": 0,
              "view_style_v2": 0,
              "yellow_label_list": [
                {
                  "label_text": "第二件6.1折",
                  "label_type": "second_piece_x_discount"
                }
              ],
              "sku_take_coupon": 1,
              "consult_promotion_price": 1,
              "imp_tracks": [],
              "sku_suffix_display_list": [
                {
                  "type": "inventory",
                  "sku_id": 1687797611170,
                  "spec_key_name": "型号",
                  "show_content": [
                    {
                      "display_type": 0,
                      "text": "快要抢光",
                      "font_color": "#E02E24",
                      "select_font_color": "#FFFFFF",
                      "font_size": 14
                    }
                  ],
                  "big_pic_style_show": 1,
                  "screen_style_show": 1,
                  "single_selector_show": 1,
                  "display_type": 1,
                  "flex_type": 0,
                  "big_pic_flex_type": 1,
                  "exp_key": "ab_sku_checkout_stock_shortage_7070",
                  "suffix_content_type": "stock_shortage"
                }
              ],
              "stock_tight": 1,
              "neck_bar_common_data_map": [],
              "waist_bar_common_data_map": [],
              "higher_floating_layer": true,
              "weak_network_toast": "快要抢光"
            },
            "bottom_buying_section": {
              "type": "multi_group",
              "data": {
                "multi_buy_bottom_desc": "3人团专享"
              }
            },
            "more_pop_navi_button": {
              "navi_list": [
                {
                  "icon_id": "59787",
                  "text": "常见问题",
                  "url": "questions.html"
                },
                {
                  "icon_id": "59786",
                  "text": "意见反馈",
                  "url": "personal_feedback.html"
                },
                {
                  "icon_id": "59788",
                  "text": "举报商品",
                  "url": "comm_goods_complaint.html?goods_id=684399851264&counterfeitBrandProducts=false"
                }
              ]
            },
            "price_explain_section": {
              "pulldown_title": "点击查看商品价格说明"
            },
            "photo_bottom_section": {
              "price_rich": [
                {
                  "txt": "0",
                  "font": 24,
                  "type": 1,
                  "can_hidden": false,
                  "min_font": 19
                },
                {
                  "txt": ".58",
                  "font": 13,
                  "type": 1,
                  "can_hidden": false,
                  "min_font": 13
                }
              ],
              "prefix_rich": [
                {
                  "txt": "¥",
                  "font": 15,
                  "type": 1
                }
              ],
              "color": "#FFFFFF",
              "desc_color": "#9C9C9C",
              "promotion_txt": "查看优惠",
              "open_group_txt": "去拼单",
              "use_new_desc_labels_rule": false
            },
            "carousel_section": {
              "picture_list": [
                {
                  "id": 1255762627697,
                  "goods_id": 684399851264,
                  "url": "https://img.pddpic.com/mms-material-img/2024-10-06/b871a9f2-0d40-4bd2-9089-91b176da1490.jpeg",
                  "width": 800,
                  "height": 800,
                  "type": 1,
                  "enable_share": 1,
                  "gallery_pic": 1
                },
                {
                  "id": 1255762627698,
                  "goods_id": 684399851264,
                  "url": "https://img.pddpic.com/mms-material-img/2024-10-06/a64b5365-736a-4dd8-a6d9-9458bb4dfaf5.jpeg",
                  "width": 800,
                  "height": 800,
                  "type": 1,
                  "enable_share": 1,
                  "gallery_pic": 1
                },
                {
                  "id": 1255762627699,
                  "goods_id": 684399851264,
                  "url": "https://img.pddpic.com/mms-material-img/2024-10-06/c88dc141-456e-4bb0-9d0b-3570f857499a.png",
                  "width": 800,
                  "height": 800,
                  "type": 1,
                  "enable_share": 1,
                  "gallery_pic": 1
                },
                {
                  "id": 1255762627700,
                  "goods_id": 684399851264,
                  "url": "https://img.pddpic.com/mms-material-img/2024-10-06/36d7ab7b-b97a-4570-b78a-81b7c20a7bc3.jpeg",
                  "width": 800,
                  "height": 800,
                  "type": 1,
                  "enable_share": 1,
                  "gallery_pic": 1
                },
                {
                  "id": 1255762627701,
                  "goods_id": 684399851264,
                  "url": "https://img.pddpic.com/mms-material-img/2024-10-06/f3043f7f-c0c8-42c2-a6f5-5479000e585c.png",
                  "width": 800,
                  "height": 800,
                  "type": 1,
                  "enable_share": 1,
                  "gallery_pic": 1
                },
                {
                  "id": 1255762627702,
                  "goods_id": 684399851264,
                  "url": "https://img.pddpic.com/mms-material-img/2024-10-06/dd3ad177-aee9-475d-9482-ebd147d50eeb.png",
                  "width": 800,
                  "height": 800,
                  "type": 1,
                  "enable_share": 1,
                  "gallery_pic": 1
                },
                {
                  "id": 1255762627703,
                  "goods_id": 684399851264,
                  "url": "https://img.pddpic.com/mms-material-img/2024-10-06/19cd14b0-edc2-4249-8b59-7d19ad4e1c3f.jpeg",
                  "width": 500,
                  "height": 500,
                  "type": 1,
                  "enable_share": 1,
                  "gallery_pic": 1
                },
                {
                  "id": 1255762627704,
                  "goods_id": 684399851264,
                  "url": "https://img.pddpic.com/mms-material-img/2024-10-06/4c8b2716-ada6-47fd-bc22-f3bd731bbe2b.jpeg",
                  "width": 500,
                  "height": 500,
                  "type": 1,
                  "enable_share": 1,
                  "gallery_pic": 1
                },
                {
                  "id": 1255762627705,
                  "goods_id": 684399851264,
                  "url": "https://img.pddpic.com/mms-material-img/2024-10-06/f62a6607-54b9-4a03-b811-2f469d8cddce.jpeg",
                  "width": 800,
                  "height": 800,
                  "type": 1,
                  "enable_share": 1,
                  "gallery_pic": 1
                },
                {
                  "id": 1255762627706,
                  "goods_id": 684399851264,
                  "url": "https://img.pddpic.com/mms-material-img/2024-10-06/19f2d6aa-f59e-455e-809c-a2d29eadb4e7.jpeg",
                  "width": 800,
                  "height": 800,
                  "type": 1,
                  "enable_share": 1,
                  "gallery_pic": 1
                }
              ],
              "carousel_live_feed": 1
            },
            "pull_down_title_section": {
              "bg_color": "#E02E24",
              "second_line_rich_list": [
                {
                  "type": 1,
                  "txt": "已抢235件",
                  "color": "#E5FFFFFF",
                  "font": 14
                },
                {
                  "type": 2,
                  "space": 4
                },
                {
                  "type": 5,
                  "line_width": 0.5,
                  "line_height": 12,
                  "line_color": "#E5FFFFFF"
                },
                {
                  "type": 2,
                  "space": 4
                },
                {
                  "type": 1,
                  "txt": "原拼单价 ¥1.9",
                  "color": "#E5FFFFFF",
                  "font": 14
                }
              ]
            }
          },
          "popup": [
            {
              "name": "goods_id",
              "payload": 684399851264
            }
          ],
          "control": {
            "require_mall_active_time": 1,
            "in_price_tag_gray": 1,
            "query_share_title_price": 1,
            "join_group_txt_gray": 1,
            "quantity_check_request_params": {
              "from_goods_detail": 1
            },
            "ai_assistant_enable": false,
            "enable_fold_fav_and_mall": false
          },
          "transmission": {
            "promotion_extend_info": [],
            "sku_direct_order_extend_info": {
              "carousel_tag_list": "[{\"type\":1,\"icon\":null,\"descList\":[\"全场包邮\",\"7天无理由退货\",\"48小时发货\",\"先用后付\"],\"highLightList\":null}]",
              "detail_id": 7574442409,
              "service_tag_list": "[\"全场包邮\",\"7天无理由退货\",\"48小时发货\",\"先用后付\"]"
            }
          },
          "secondary_api": {
            "url": "/api/oak/integration/require_extra",
            "method": "POST",
            "params": {
              "goods_id": "684399851264",
              "page_from": "0",
              "mall_id": 818030150,
              "func_points": [
                "mall_active_time",
                "full_back_coupons_section",
                "sku_pane_syn_positive_elements",
                "ai_yellow_bar"
              ],
              "cached_templates": [
                "b02e5cf12a800343e2470e8238d49790",
                "4cb686aa9d52ed9214853abb540f1927",
                "f030ffc32e219d7e5c19aed6079e7eb2",
                "34b4b0542bf3b506429e66c08435c087",
                "1fcb5581b3fc8eb52616c1d7a4d9c3ba",
                "5f555da628dec82c442eac1bee4beb20",
                "f20e57f83229a4605587ad79351828b8"
              ],
              "min_on_sale_group_price": 58,
              "has_rec_section": false,
              "candidate_bottom_section_list": [
                "full_refund_coupon_section",
                "lego_fav_full_discount_section"
              ],
              "yb_algo_req_id": "b9d26792-6906-4e29-a0e5-28f333a9e572"
            }
          },
          "neighbor_group": {
            "neighbor_status": 1,
            "neighbor_data": {
              "combine_group": {
                "combine_group_list_type": 3,
                "extra_avatar_list": [
                  "https://avatar3.pddpic.com/a/Q0ZKaHZmeFl3SjhwQTBrM3JqRE4vUmRRMGhXWDBpOXhodz09djA0-1639407694?imageMogr2/thumbnail/100x",
                  "https://avatar3.pddpic.com/a/Q0RUUWhyVGt1Uy83ZkVFV3IrelgzQXhiWk96dE1iMERaUT09djA0-1665388806?imageMogr2/thumbnail/100x",
                  "https://avatar3.pddpic.com/a/Q0ZyeXhoZFVWWHBUSzNNS3FjM282eUJjbldSRFRXd29Odz09djA0-1711036736?imageMogr2/thumbnail/100x",
                  "https://avatar3.pddpic.com/a/Q0oyYWthK1grekFnSjdIMjhZWFk1dHZILzdOeWozOFlSdz09djA0-1725553860?imageMogr2/thumbnail/100x",
                  "https://avatar3.pddpic.com/a/Q0RjTUdWTHU2WmhrTlh6NTdrREc0NCtwaURyVVZ4cDFCUT09djA0-1692356451?imageMogr2/thumbnail/100x",
                  "https://avatar3.pddpic.com/a/Q0grVWs5bmJxL1NPWStrbU1yMGhwQjZ1R1Z3MzBBUmdhUT09djA0-1639272861?imageMogr2/thumbnail/100x",
                  "https://avatar3.pddpic.com/a/Q0RUYU9BU2NyVUk0RWhQaCtyVUJPK3dDcFpsQzZXZGovdz09djA0-1739492960?imageMogr2/thumbnail/100x",
                  "https://avatar3.pddpic.com/a/Q0VKL0owNkNaWVM0d1Z4eXBhMm5TU2EzYlM4VGd3cGt4QT09djA0-1719968605?imageMogr2/thumbnail/100x",
                  "https://avatar3.pddpic.com/a/Q0JFblVkRDF1U01aYzI4SEdzSm9jQUFmY29QYng0dmxoZz09djA0-1739093348?imageMogr2/thumbnail/100x",
                  "https://avatar3.pddpic.com/a/Q01TQ0hEVkZYLzd5M2hjYXhmeVp2UTk0dkZ4MWVDbXFNQT09djA0-1737201112?imageMogr2/thumbnail/100x",
                  "https://avatar3.pddpic.com/a/Q1BTaWFwNENZSWtZZ2VDVUNBeVkvS0szNFowMTVBUGRIdz09djA0-1673068102?imageMogr2/thumbnail/100x"
                ],
                "is_goods_awkward": false,
                "extend_map": {
                  "self_avatar": "https://avatar3.pddpic.com/a/Q0crcHJ0dVF4dCtHOFRJR2VvdFhpZ1FleExNK21hc1hydz09djA0-1743196730?imageMogr2/thumbnail/100x",
                  "is_history_and_visitor_group": false,
                  "is_enhance_local_group": false,
                  "platform_context": {
                    "platform": "ANDROID",
                    "version": "7.51.0",
                    "major_version": 7,
                    "minor_version": 51,
                    "build_version": 0,
                    "bugfix_version": 0,
                    "ios_platform": false,
                    "android_platform": true
                  }
                }
              }
            }
          },
          "review": {
            "review_data": {
              "review_num": 99,
              "review_merge_outer_num": 0,
              "review_num_text": "商品评价(99)",
              "review_merge_outer_num_text": "",
              "review_info_list": [
                {
                  "review_id": 599018140786685700,
                  "comment": "这款芦笋种子四季播种,嗯,抗热内寒,你分钟能力强,出苗率高,呃,种子质量好,是正品,颗粒均匀,颗粒非常饱满。容易种植,成熟时间短。生长速度快。",
                  "desc_score": 5,
                  "specs": "[{\"spec_key\":\"型号\",\"spec_value\":\"芦笋种子【多年生】\"},{\"spec_key\":\"款式\",\"spec_value\":\"早熟快【10送10粒】+三级肥料\"}]",
                  "time": 1737211707,
                  "avatar": "https://avatar3.pddpic.com/a/Q0lmMVdEVnNRS09YOHBSdjNaZHYvaGttaUNuU3VucXVldz09djA0-1654383661?imageMogr2/thumbnail/100x",
                  "name": "读你",
                  "anonymous": 0,
                  "order_num_text": "",
                  "pxq_friend_tag": false,
                  "is_my_review": false,
                  "good_review_style": 0,
                  "is_sensitive_goods": false,
                  "comment_top_right_tag": {
                    "review_tag_list": []
                  },
                  "comment_bottom_left_tag": {
                    "review_tag_list": [
                      {
                        "type": 1,
                        "txt": "提到“发芽率很高、种子颗粒饱满”(共23人提到)",
                        "color": "#925926",
                        "font": 14,
                        "bold": 0
                      }
                    ]
                  }
                },
                {
                  "review_id": 598065539391289100,
                  "comment": "原来芦笋种子长这样,还是第一次购买种子自己来培育苗,种子大小均匀,颗粒饱满,等开春就可以撒播下去了,另外还赠了一小包肥料,挺不错的",
                  "desc_score": 5,
                  "specs": "[{\"spec_key\":\"型号\",\"spec_value\":\"芦笋种子【多年生】\"},{\"spec_key\":\"款式\",\"spec_value\":\"早熟快【10送10粒】+三级肥料\"}]",
                  "time": 1736757472,
                  "avatar": "https://avatar3.pddpic.com/a/Q0hRQ1JXNndMakM2L053QW9WVVgwTGdGNXpTZk5wR0NUQT09djA0-1657339297?imageMogr2/thumbnail/100x",
                  "name": "Catherinr",
                  "anonymous": 0,
                  "order_num_text": "",
                  "pxq_friend_tag": false,
                  "is_my_review": false,
                  "good_review_style": 0,
                  "is_sensitive_goods": false,
                  "comment_top_right_tag": {
                    "review_tag_list": []
                  }
                }
              ],
              "new_merchant_qa_pattern_gray": false,
              "merchant_qa_answer_show": false,
              "merchant_qa_num_text": "",
              "merchant_qa_title_text": "商品答疑",
              "new_outer_review_gray": true,
              "outer_positive_review_num_text": "",
              "enable_pass_review_id": false,
              "merge_review_with_outer_review": 1,
              "exps": {
                "label_info": {
                  "strategy_name": "V3.37.16",
                  "timestamp": 1743197157551
                },
                "goods_detail_perfect_pic": {
                  "strategy_name": "V2.27",
                  "timestamp": 1743197157532
                },
                "goods_detail": {
                  "strategy_name": "V3.134.9",
                  "timestamp": 1743197157538
                }
              },
              "review_num_str": "99",
              "enable_review_new_style": false,
              "extra_map": {
                "extraMapOuterPositiveReviewNum": 0,
                "notDisplayLabelRevNum": false,
                "isNumIncrease": false
              },
              "review_line_num": 2,
              "hide_text_arrow_strategy": 0
            },
            "mall_review_entrance_info": {
              "label_list": [
                {
                  "id": "462a84ed278b88720849dfa87b1a7b6b",
                  "cluster_id": -1,
                  "name": "回头客",
                  "num": 631,
                  "positive": 1,
                  "text": "回头客(631)",
                  "view": {
                    "label_type": 0,
                    "iconfont": 59147,
                    "back_color": "#FDEFEE",
                    "click_back_color": "#F7D7D5",
                    "select_back_color": "#E02E24",
                    "text_color": "#58595B",
                    "click_text_color": "#7C7372",
                    "select_text_color": "#FFFFFF"
                  }
                },
                {
                  "id": "f73dc5364dd33396b85a7e1c761c0af1",
                  "cluster_id": 1318,
                  "name": "种子很好",
                  "num": 537,
                  "positive": 1,
                  "text": "种子很好(537)",
                  "view": {
                    "label_type": 0,
                    "back_color": "#FDEFEE",
                    "click_back_color": "#F7D7D5",
                    "select_back_color": "#E02E24",
                    "text_color": "#58595B",
                    "click_text_color": "#7C7372",
                    "select_text_color": "#FFFFFF"
                  }
                },
                {
                  "id": "ef7bc5da221112376d9961c198834f9f",
                  "cluster_id": 0,
                  "name": "质量很好",
                  "num": 505,
                  "positive": 1,
                  "text": "质量很好(505)",
                  "view": {
                    "label_type": 0,
                    "back_color": "#FDEFEE",
                    "click_back_color": "#F7D7D5",
                    "select_back_color": "#E02E24",
                    "text_color": "#58595B",
                    "click_text_color": "#7C7372",
                    "select_text_color": "#FFFFFF"
                  }
                },
                {
                  "id": "232a85c70c5abca5c34cd5cd5eea800d",
                  "cluster_id": 20,
                  "name": "包装很好",
                  "num": 493,
                  "positive": 1,
                  "text": "包装很好(493)",
                  "view": {
                    "label_type": 0,
                    "back_color": "#FDEFEE",
                    "click_back_color": "#F7D7D5",
                    "select_back_color": "#E02E24",
                    "text_color": "#58595B",
                    "click_text_color": "#7C7372",
                    "select_text_color": "#FFFFFF"
                  }
                },
                {
                  "id": "12cca00f02ce30ec82bb64250b55fc8e",
                  "cluster_id": 134,
                  "name": "颗粒饱满",
                  "num": 439,
                  "positive": 1,
                  "text": "颗粒饱满(439)",
                  "view": {
                    "label_type": 0,
                    "back_color": "#FDEFEE",
                    "click_back_color": "#F7D7D5",
                    "select_back_color": "#E02E24",
                    "text_color": "#58595B",
                    "click_text_color": "#7C7372",
                    "select_text_color": "#FFFFFF"
                  }
                },
                {
                  "id": "697094d51cff62d0e62f8fca973ea8cd",
                  "cluster_id": 1350,
                  "name": "发芽率很高",
                  "num": 367,
                  "positive": 1,
                  "text": "发芽率很高(367)",
                  "view": {
                    "label_type": 0,
                    "back_color": "#FDEFEE",
                    "click_back_color": "#F7D7D5",
                    "select_back_color": "#E02E24",
                    "text_color": "#58595B",
                    "click_text_color": "#7C7372",
                    "select_text_color": "#FFFFFF"
                  }
                },
                {
                  "id": "8c0e987c25ec4ee463bf2dded3bc0118",
                  "cluster_id": 288,
                  "name": "籽粒饱满",
                  "num": 213,
                  "positive": 1,
                  "text": "籽粒饱满(213)",
                  "view": {
                    "label_type": 0,
                    "back_color": "#FDEFEE",
                    "click_back_color": "#F7D7D5",
                    "select_back_color": "#E02E24",
                    "text_color": "#58595B",
                    "click_text_color": "#7C7372",
                    "select_text_color": "#FFFFFF"
                  }
                },
                {
                  "id": "011dcb6141a90fe23ba73110554f3b19",
                  "cluster_id": 13580,
                  "name": "种子粒粒饱满",
                  "num": 141,
                  "positive": 1,
                  "text": "种子粒粒饱满(141)",
                  "view": {
                    "label_type": 0,
                    "back_color": "#FDEFEE",
                    "click_back_color": "#F7D7D5",
                    "select_back_color": "#E02E24",
                    "text_color": "#58595B",
                    "click_text_color": "#7C7372",
                    "select_text_color": "#FFFFFF"
                  }
                },
                {
                  "id": "0e7869f619f6abc840cf7b5b25b568fe",
                  "cluster_id": 18,
                  "name": "驱蚊效果显著",
                  "num": 109,
                  "positive": 1,
                  "text": "驱蚊效果显著(109)",
                  "view": {
                    "label_type": 0,
                    "back_color": "#FDEFEE",
                    "click_back_color": "#F7D7D5",
                    "select_back_color": "#E02E24",
                    "text_color": "#58595B",
                    "click_text_color": "#7C7372",
                    "select_text_color": "#FFFFFF"
                  }
                },
                {
                  "id": "242d3c6d1851d853a7d904f159914947",
                  "cluster_id": 870,
                  "name": "种好发芽追评",
                  "num": 100,
                  "positive": 1,
                  "text": "种好发芽追评(100)",
                  "view": {
                    "label_type": 0,
                    "back_color": "#FDEFEE",
                    "click_back_color": "#F7D7D5",
                    "select_back_color": "#E02E24",
                    "text_color": "#58595B",
                    "click_text_color": "#7C7372",
                    "select_text_color": "#FFFFFF"
                  }
                },
                {
                  "id": "45826c618600254b3c51e780332d0cae",
                  "cluster_id": 10,
                  "name": "口感清",
                  "num": 59,
                  "positive": 1,
                  "text": "口感清(59)",
                  "view": {
                    "label_type": 0,
                    "back_color": "#FDEFEE",
                    "click_back_color": "#F7D7D5",
                    "select_back_color": "#E02E24",
                    "text_color": "#58595B",
                    "click_text_color": "#7C7372",
                    "select_text_color": "#FFFFFF"
                  }
                },
                {
                  "id": "f4361d2cfe95e17631242c23d856e4c5",
                  "cluster_id": 6,
                  "name": "漂亮",
                  "num": 55,
                  "positive": 1,
                  "text": "漂亮(55)",
                  "view": {
                    "label_type": 0,
                    "back_color": "#FDEFEE",
                    "click_back_color": "#F7D7D5",
                    "select_back_color": "#E02E24",
                    "text_color": "#58595B",
                    "click_text_color": "#7C7372",
                    "select_text_color": "#FFFFFF"
                  }
                },
                {
                  "id": "65cc5261ca0874420db3d5fef59f084b",
                  "cluster_id": 392,
                  "name": "花很漂亮",
                  "num": 31,
                  "positive": 1,
                  "text": "花很漂亮(31)",
                  "view": {
                    "label_type": 0,
                    "back_color": "#FDEFEE",
                    "click_back_color": "#F7D7D5",
                    "select_back_color": "#E02E24",
                    "text_color": "#58595B",
                    "click_text_color": "#7C7372",
                    "select_text_color": "#FFFFFF"
                  }
                }
              ],
              "title_text": "该商品所属店铺评价(11.6万)",
              "exps": {
                "mall_functional_label": {
                  "bucket": 0,
                  "timestamp": 1743197157533
                }
              },
              "action_info": {
                "action": "openUrl",
                "action_params": {
                  "url": "mall_comment.html?mall_id=818030150"
                }
              },
              "mall_raw_review_num": 116000,
              "mall_raw_review_num_str": "11.6万",
              "hide_text_arrow_strategy": 0
            }
          },
          "mall_entrance": {
            "mall_data": {
              "mall_id": "818030150",
              "mall_name": "繁花种子园艺",
              "mall_star": 4.5,
              "mall_show_type": 0,
              "mall_transfer_type": 0,
              "sales_tip": "已拼10万+件",
              "sales_tip_v2": "全店已拼10万+件",
              "sales_tip_v3": "店铺已拼10万+件",
              "mall_sales": 100000,
              "mall_logo": "http://t16img.yangkeduo.com/pdd_ims/img_check/v3/FA7800FFFFFF0820200112155259495/90326031c7e24d35875734a6c65577a2.png",
              "goods_num": 286,
              "goods_num_desc": "商品数量: 286",
              "pdd_route": "mall_page.html?mall_id=818030150&msn=vt2gokdm6v56ehampsfcm6om4u_axbuy&_sop_rcto=YWLHJqKXi53h01AZfNm72P4IGFu4qEfzuP4&mall_info=%7B%22mall_name%22%3A%22%E7%B9%81%E8%8A%B1%E7%A7%8D%E5%AD%90%E5%9B%AD%E8%89%BA%22%7D",
              "pdd_route_name": "进店",
              "mall_service_tag": "客服",
              "is_flag_ship": false,
              "logo_list": [],
              "mall_logo_list": [
                {
                  "logo_type": 4,
                  "logo_url": "https://promotion.pddpic.com/oms-img-promotion/2025-03-26/7ece3978-cd5a-470c-a0ad-9b18679d3479.png",
                  "logo_height": 48,
                  "logo_width": 171
                }
              ],
              "mall_logo_list_v2": [
                {
                  "logo_type": 4,
                  "logo_url": "https://promotion.pddpic.com/oms-img-promotion/2025-03-26/7ece3978-cd5a-470c-a0ad-9b18679d3479.png",
                  "logo_height": 48,
                  "logo_width": 171
                }
              ],
              "dsr": {
                "desc_score": 4.59,
                "desc_status": 1,
                "logistics_score": 4.59,
                "logistics_status": 1,
                "service_score": 4.59,
                "service_status": 1,
                "desc_rank_percent": 31,
                "logistics_rank_percent": 31,
                "service_rank_percent": 31,
                "desc_rank_status": 1,
                "logistics_rank_status": 1,
                "service_rank_status": 1,
                "hide_rank_info": 0,
                "mall_rating_text_list": [
                  {
                    "mall_rating_key": {
                      "txt": "描述相符",
                      "color": "#58595B",
                      "font": 13
                    },
                    "mall_rating_value": {
                      "txt": "高",
                      "color": "#E02E24",
                      "font": 11,
                      "back_color": "#FCE5E5"
                    }
                  },
                  {
                    "mall_rating_key": {
                      "txt": "物流服务",
                      "color": "#58595B",
                      "font": 13
                    },
                    "mall_rating_value": {
                      "txt": "高",
                      "color": "#E02E24",
                      "font": 11,
                      "back_color": "#FCE5E5"
                    }
                  },
                  {
                    "mall_rating_key": {
                      "txt": "服务态度",
                      "color": "#58595B",
                      "font": 13
                    },
                    "mall_rating_value": {
                      "txt": "高",
                      "color": "#E02E24",
                      "font": 11,
                      "back_color": "#FCE5E5"
                    }
                  }
                ],
                "mall_star": 4.5,
                "is_show_mall_star": true
              },
              "is_guide_mall": true,
              "extras": {
                "2": false,
                "3": false,
                "5": 1,
                "7": false,
                "8": true,
                "13": true,
                "14": false
              },
              "msn": "vt2gokdm6v56ehampsfcm6om4u_axbuy",
              "merchant_type": 1,
              "has_mall_decoration": false,
              "hide_ship_address": false,
              "mall_fav_vo": {
                "show_button": false,
                "mall_fav_num": 2499,
                "mall_fav_tag": "粉丝:2499"
              },
              "goods_detail_endorse_vo": {
                "mall_operate_data_list": [
                  {
                    "tag_type": 1,
                    "tag_value": "已拼10万+件"
                  },
                  {
                    "tag_type": 5,
                    "tag_value": "4.5"
                  },
                  {
                    "tag_type": 4,
                    "tag_value": "粉丝:2499"
                  }
                ],
                "service_assurance_cell": {
                  "action": "highLayer",
                  "action_params": {
                    "url": "pdd_mall_lego_pages.html?lego_minversion=5.78.0&minversion=5.78.0&lego_type=v8&lego_ssr_api=%2Fapi%2Fpdd_mall_lego_pages%2Fget_config%2Fpdd_mall_guarantee_layer&source=3&mall_id=818030150",
                    "name": "pdd_mall_guarantee_layer"
                  },
                  "title": "店铺保障",
                  "service_tag_list": [
                    "全场包邮",
                    "7天无理由退货"
                  ],
                  "bg_image": "https://promotion.pddpic.com/promo/us/117fa9b2-d15b-4c04-a357-6fb0a078be89.png.slim.png",
                  "icon": "https://promotion.pddpic.com/promo/us/7c8ab69c-324d-420b-aa6e-fca15dddcc90.png"
                }
              },
              "factory_mall_vo": {
                "factory_mall_flag": false
              },
              "mall_service_auth_lego_url": "pdd_mall_lego_pages.html?lego_minversion=5.78.0&minversion=5.78.0&lego_type=v8&lego_ssr_api=%2Fapi%2Fpdd_mall_lego_pages%2Fget_config%2Fpdd_mall_guarantee_layer&source=3&mall_id=818030150"
            }
          },
          "section_list": [
            {
              "section_id": "price_section"
            },
            {
              "data": {
                "mall_promotion_new_cell": {
                  "cell_detail_list": [
                    {
                      "copy_writing": "第二件6.1折",
                      "cell_tag_type": 36,
                      "in_milli": false,
                      "count_over_one_day": false,
                      "copy_writing_color": "#E02E24",
                      "frame_color": "#E02E24",
                      "background_color": "#FFFFFF",
                      "promo_discount": 0,
                      "usable_type": 43
                    }
                  ]
                }
              },
              "section_id": "discount_section",
              "section_action": {
                "action_type": "discount_pop",
                "action_data": {
                  "biz_name": "discount_pop_section"
                }
              }
            },
            {
              "section_id": "pay_tip_section"
            },
            {
              "data": {
                "color": "#FFFFFF",
                "height": 6
              },
              "section_id": "space_section"
            },
            {
              "section_id": "title_section"
            },
            {
              "data": {
                "color": "#FFFFFF",
                "height": 6
              },
              "section_id": "space_section"
            },
            {
              "template": {
                "id": "goods-detail.features_section.features_cell",
                "hash": "f20e57f83229a4605587ad79351828b8"
              },
              "data": {
                "_track_dict": [],
                "slide": true,
                "quality_selling_point_models": [
                  {
                    "tag_dim_id": 31,
                    "rich_text": [
                      {
                        "txt": "24小时内100+人拼单",
                        "color": "#925926"
                      }
                    ],
                    "rich_text_v2": [
                      {
                        "type": 2,
                        "space": 4
                      },
                      {
                        "type": 1,
                        "txt": "24小时内100+人拼单",
                        "color": "#925926",
                        "font": 14
                      },
                      {
                        "type": 2,
                        "space": 4
                      }
                    ],
                    "click_track": {
                      "extra": {
                        "tag_content": "24小时内100+人拼单",
                        "tag_words": "24小时内100+人拼单",
                        "tag_id": 31,
                        "tag_number": 100
                      },
                      "page_el_sn": "7350981"
                    },
                    "border_color": "#C5A68B"
                  },
                  {
                    "tag_dim_id": 11,
                    "rich_text": [
                      {
                        "txt": "好评率超99%同款",
                        "color": "#925926"
                      }
                    ],
                    "rich_text_v2": [
                      {
                        "type": 2,
                        "space": 4
                      },
                      {
                        "type": 1,
                        "txt": "好评率超99%同款",
                        "color": "#925926",
                        "font": 14
                      },
                      {
                        "type": 2,
                        "space": 4
                      }
                    ],
                    "click_track": {
                      "extra": {
                        "tag_content": "好评率超99%同款",
                        "tag_words": "好评率超99%同款",
                        "tag_id": 11,
                        "tag_number": 99
                      },
                      "page_el_sn": "7350981"
                    },
                    "border_color": "#C5A68B"
                  },
                  {
                    "tag_dim_id": 41,
                    "rich_text": [
                      {
                        "txt": "同款热销",
                        "color": "#925926"
                      }
                    ],
                    "rich_text_v2": [
                      {
                        "type": 2,
                        "space": 4
                      },
                      {
                        "type": 1,
                        "txt": "同款热销",
                        "color": "#925926",
                        "font": 14
                      },
                      {
                        "type": 2,
                        "space": 4
                      }
                    ],
                    "click_track": {
                      "extra": {
                        "tag_content": "同款热销",
                        "tag_words": "同款热销",
                        "tag_id": 41,
                        "tag_number": 0
                      },
                      "page_el_sn": "7350981"
                    },
                    "border_color": "#C5A68B"
                  }
                ],
                "quality_selling_points": [
                  "抗病高产"
                ]
              },
              "section_id": "quality_selling_point_section",
              "track_list": [
                {
                  "page_el_sn": "7846056"
                }
              ]
            },
            {
              "data": {
                "color": "#FFFFFF",
                "height": 8
              },
              "section_id": "space_section"
            },
            {
              "data": {
                "control": {
                  "top_line": 1
                }
              },
              "section_id": "service_section"
            },
            {
              "section_id": "space_section"
            },
            {
              "section_id": "group_section"
            },
            {
              "section_id": "space_section"
            },
            {
              "section_id": "comment_section"
            },
            {
              "section_id": "space_section"
            },
            {
              "section_id": "mall_comment_section"
            },
            {
              "section_id": "space_section"
            },
            {
              "section_id": "mall_info_section"
            },
            {
              "section_id": "space_section"
            },
            {
              "data": {
                "style": 2
              },
              "section_id": "goods_property_section"
            },
            {
              "template": {
                "id": "goods-detail.merge_payment_guide_section.merge_payment_guide",
                "content": "bTIBCgAHABAAIAAAAwAAJgASAxowDhkGTiCoIBIaQA4aBk4gqCASGlAOGwZOIKggEhpgEgUfAAQCAQAQALvXARBoAQIAHwC7KgEQHwEEBAIAEwDQAiM41wAjIznXASMjOtcCIx8CBAQCAA4AASFiMmgDAgAOI0QgHwIACwEAXQBzEAQFIVoRAmgBUABzEAUFIVoRAmgBJgAFEgYmIHMwBgYnQHNQBwYpYAVxBiiAc6AInACazCjCAhIfAQQeAAUSBiYgczAGBidAc1AHBihgc4AInAB4zCbCAhIfAR4EBQEAMgDQAQ4t1wwS0AJzMBDXDyPXDhLQAnMwE3ESMNcSI9ADc0ATcRVA1xU01xQj1xESs3GAHgQ2AwAbAhADFq/UG3EXQEQ0szMSEAMYr9QbcRdAMRhARDSzMxIQAxmv1BtxF0AxGEAIBQUMO1UQJ0ZFRDSzMxIWRBZVFmYQBxoJCPLz/f8JCSQu4P8JChQexf+oY0cFQwYjUCNrBiBwBYAGIZAFogYVsAXABhfQBeAGFvAHEAAHERgHEgAHExAHFP8HFRUHFgwHFxcHGAwHGQMHGmTNBRYFYwVzBmSABiKQBaEGIbAFwgYV0AXgBhfwBxAABxEWBxIABxMYBxQABxUyBxYBBxcSBxgCBxkUBxoOzQcUc4AbDAlaiAloCAMABAgAc4AbDQlaiAloCAUAywgEAwBzgBsjnMMSAYLCAmMFcQYqgHOQHAWjBmSwBgjAr90bcRfQMRjQCA4FDDvuECdKDQ7MhsICchAIHQWTBl2gc7MABmDAc9MBBl/gc/MCBxAjJRENBxJBGBMEBxQgBxUCBxYiBxcBBxgVBxkABxoXBxsABxwWBx0ABx4YBx8AByADByFkByIIByMtByQ5ByUEByY6BycEByg7BykEByo8BysEByw3CS0kLuD/By44By8FPy8vCgcwIQcxAgcyEgczDAc0FAc1DM0KLAWyBkHAFtUGJuBz8B4HECcHEREHEloHEwIHFCgJFSQu4P/MysICsgXCBkHQFuYGxPAHEAEHEScHEgsHExEHFAQHFSgJFiQu4P8HFyYQGB/M3MICwsIClMICRh8EBAoHAAkAI44jn6gXgh8HAAIBAQUAAQAnEH4QHgACAQEFAAEBJxB+EB4AAgEBBQABAScQfhAeAAIAAQUAAQAnEJRBHgAEAgAHABYzgiMAHwIAAgABBQABACcQlEEeAAUBBTcAAQABAQECAQQBBicQthEGECAnQ5wANMwivzIBEicRthEGKCAnRJwANMwivzIBEicSthEGKCAnRJwANMwivzIBEh4ABQEFNwABAAEBAQIBAwEFJxC2EQYQICdDnAA0zCK/MgESJxG2EQYoICdEnAA0zCK/MgESJxK2EQYoICdEnAA0zCK/MgESHgxvblRvdWNoU3RhcnQKb25Ub3VjaEVuZA1vblRvdWNoQ2FuY2VsAV8EdHlwZQRib2xkA3R4dARmb250BWNvbG9yGm1lcmdlX3BheV9ndWlkZV9idXR0b25fcmVmHm1lcmdlX3BheV9ndWlkZV9idXR0b25fdHh0X3JlZiBtZXJnZV9wYXlfZ3VpZGVfYnV0dG9uX2Fycm93X3JlZgZhY3Rpb24Hb3BlblVybARkYXRhA3VybAhqdW1wX3VybAV0cmFjawpwYWdlX2VsX3NuC190cmFja19kaWN0BWV4dHJhC2RldGFpbF90eXBlDnNjcmVlbi53aWR0aDogBXdpZHRoDWltYWdlLndpZHRoOiAOaW1hZ2UuaGVpZ2h0OiAABXRpdGxlB3BpY191cmwBLAlydWxlX2Rlc2MD7piX",
                "hash": "1056580a43ba9806d89fd26e45cdc2c7",
                "height": 0
              },
              "data": {
                "_track_dict": {
                  "page_el_sn": "6579127",
                  "detail_type": 8
                },
                "jump_url": "mall_page.html?mall_id=818030150&mall_tab_key_list=%5B%22mall_goods%22%5D&refer_page_param=%7B%22goodsIds%22%3A%5B684399851264%5D%7D",
                "rule_desc": "去使用3件8折优惠",
                "title": [
                  {
                    "txt": "如何使用",
                    "color": "#151516",
                    "font": 16,
                    "type": 1,
                    "countdown_style": 0
                  },
                  {
                    "txt": "3件8折",
                    "color": "#E02E24",
                    "font": 16,
                    "bold": 1,
                    "type": 1,
                    "countdown_style": 0
                  },
                  {
                    "txt": "折扣优惠",
                    "color": "#151516",
                    "font": 16,
                    "type": 1,
                    "countdown_style": 0
                  }
                ],
                "pic_url": "https://funimg.pddpic.com/1f6128b2-0f5e-4375-a20c-df041c670da7.png"
              },
              "section_id": "merge_payment_guide_section",
              "track_list": [
                {
                  "extra": {
                    "detail_type": 8
                  },
                  "page_el_sn": "6579127"
                }
              ]
            },
            {
              "section_id": "full_back_coupons_section"
            },
            {
              "section_id": "video_section"
            },
            {
              "section_id": "illustration_section"
            },
            {
              "section_id": "decoration_section"
            },
            {
              "data": {
                "pulldown_title": "点击查看商品价格说明",
                "content": [
                  {
                    "txt": "单独购买价:",
                    "color": "#151516"
                  },
                  {
                    "txt": "是您单独购买商品的价格\n",
                    "color": "#58595B"
                  },
                  {
                    "txt": "发起拼单价:",
                    "color": "#151516"
                  },
                  {
                    "txt": "是您拼单购买商品的价格\n",
                    "color": "#58595B"
                  },
                  {
                    "txt": "划线价:",
                    "color": "#151516"
                  },
                  {
                    "txt": "是指商品展示的参考价,是商品的专柜价、吊牌价、零售价、厂商指导价或该商品曾经展示过的销售价等,并非原价;由于地区、时间的差异性和市场行情波动,专柜价、零售价等可能会与您购物时展示的不一致,该价格仅供您参考\n",
                    "color": "#58595B"
                  },
                  {
                    "txt": "特别提示:",
                    "color": "#151516"
                  },
                  {
                    "txt": "实际的成交价格可能因您使用优惠券等发生变化,最终以订单结算页的价格为准。若商家单独对价格进行说明的,以商家的表述为准。如您发现活动商品售价或促销信息存在异常,建议购买前先联系商家进行咨询",
                    "color": "#58595B"
                  }
                ]
              },
              "section_id": "usage_price_desc_section"
            },
            {
              "data": {
                "color": "#FFFFFF",
                "height": 42
              },
              "section_id": "space_section"
            }
          ],
          "sub_sections": {
            "collect_show_benefits_popup_section": {
              "data": {
                "benefits": [
                  {
                    "type": 3,
                    "url": "https://promotion.pddpic.com/promo/brand_activity/ca321784-8acd-45e0-a64a-f7294c55e18b.png.slim.png",
                    "width": 15,
                    "height": 17
                  },
                  {
                    "type": 2,
                    "space": 3
                  },
                  {
                    "type": 1,
                    "txt": "快要抢光",
                    "color": "#4CDB2B",
                    "font": 15
                  }
                ],
                "bottom_desc": "去拼单",
                "style": 1
              }
            },
            "discount_pop_section": {
              "template": {
                "id": "lego-detail.discount-layer",
                "hash": "5f555da628dec82c442eac1bee4beb20"
              },
              "data": {
                "mall_promo_list": [
                  {
                    "sn": "Z0806MM-768145215869994566",
                    "mall_id": 818030150,
                    "discount": 90,
                    "source_type": 806,
                    "min_amount": 2,
                    "discount_type": 2,
                    "rich_rules_desc": [
                      {
                        "txt": "全店满2件享9折",
                        "countdown_style": 0
                      }
                    ],
                    "promotion_detail_type": 2,
                    "tag_desc": "多件多折",
                    "button_clickable": true,
                    "button_desc": "去看看",
                    "rule_sub_desc": "全店商品可用",
                    "click_operation_type": 1,
                    "link_url": "mall_page.html?mall_id=818030150&mall_tab_key_list=%5B%22mall_goods%22%5D&refer_page_param=%7B%22goodsIds%22%3A%5B684399851264%5D%7D",
                    "transmission_data": []
                  },
                  {
                    "sn": "Z0806MM-768145215869994566",
                    "mall_id": 818030150,
                    "discount": 80,
                    "source_type": 806,
                    "min_amount": 3,
                    "discount_type": 2,
                    "rich_rules_desc": [
                      {
                        "txt": "全店满3件享8折",
                        "countdown_style": 0
                      }
                    ],
                    "promotion_detail_type": 2,
                    "tag_desc": "多件多折",
                    "button_clickable": true,
                    "button_desc": "去看看",
                    "rule_sub_desc": "全店商品可用",
                    "click_operation_type": 1,
                    "link_url": "mall_page.html?mall_id=818030150&mall_tab_key_list=%5B%22mall_goods%22%5D&refer_page_param=%7B%22goodsIds%22%3A%5B684399851264%5D%7D",
                    "transmission_data": []
                  }
                ],
                "extension": [],
                "mall_promo_title": "店铺优惠",
                "environment_context": {
                  "page_from": "0",
                  "new_version": true,
                  "function_tag": false
                },
                "title": "优惠详情",
                "simple_prom_display_list": [
                  {
                    "activity_tag": "多件优惠",
                    "activity_copy_writing": "该商品满2件享8折",
                    "source_type": 971
                  }
                ],
                "is_unavailable": false
              },
              "url": "legofe_goods_coupon_layer_discount_layer.html?lego_type=v8&lego_minversion=5.33.0&rp=0&pageName=discount_layer"
            }
          },
          "bottom_section_list": [
            {
              "template": {
                "id": "goods-detail.bottom_section.common_bottom_yellow_cell",
                "hash": "34b4b0542bf3b506429e66c08435c087",
                "height": 42
              },
              "data": [],
              "api": {
                "url": "/api/ltv/biceps/goods/detail/bottom/section",
                "method": "POST",
                "params": {
                  "cat_id2": 17677,
                  "cat_id3": 17700,
                  "cat_id1": 17671,
                  "oversea_type": 0,
                  "goods_id": 684399851264,
                  "goods_options": [129, 163, 132, 164, 135, 7, 9, 13, 84, 117, 182, 54, 216, 188, 60],
                  "goods_type": 1,
                  "cat_id4": 0
                }
              },
              "control": {
                "show_type": 0,
                "close_options": 0,
                "limit_type": 0,
                "cover_options": 0
              },
              "section_id": "full_refund_coupon_section",
              "track_list": [
                {
                  "extra": {
                    "sectionid_type": "full_refund_coupon_section",
                    "yb_request_id": "full_refund_coupon_sectionHNfzreTg8256802842423",
                    "yb_algo_req_id": "b9d26792-6906-4e29-a0e5-28f333a9e572"
                  },
                  "page_el_sn": "8847049"
                }
              ],
              "ext_info": []
            },
            {
              "template": {
                "id": "goods-detail.bottom_section.bottom_icons_cell",
                "hash": "f030ffc32e219d7e5c19aed6079e7eb2",
                "height": 42
              },
              "data": [],
              "api": {
                "url": "/api/lisbon/query_yellow_tips_for_clothing_cross_reduce",
                "method": "POST",
                "params": {
                  "sectionid_type": "lego_fav_full_discount_section",
                  "is_hit_clothing_cross_reduce": false,
                  "yb_request_id": "lego_fav_full_discount_sectionbxzmCcPk8256802842423",
                  "yb_algo_req_id": "b9d26792-6906-4e29-a0e5-28f333a9e572",
                  "goods_id": "684399851264"
                }
              },
              "control": {
                "show_type": 4,
                "close_options": 0,
                "limit_type": 0,
                "cover_options": 0
              },
              "section_id": "lego_fav_full_discount_section",
              "ext_info": []
            }
          ],
          "using_secondary_bottom_section_order": true,
          "yellow_bar_polling_times": 5
        },
        "error": "",
        "reason": "",
        "error_code": "0000",
        "cache": 0,
        "api_info": "today:18 max:10000 all[297=18+20+259];expires:2030-10-30",
        "execution_time": "0.28",
        "server_time": "Beijing/2025-03-30 16:32:18",
        "client_ip": "106.6.39.237",
        "call_args": [],
        "api_type": "sys",
        "translate_language": "zh-CN",
        "translate_engine": "baidu",
        "server_memory": "3.6MB",
        "request_id": "1.67e90191c8ca4",
        "last_id": "4229567838"
      }
异常示例
{
  "error": "item-not-found",
  "reason": "id不存在",
  "error_code": "2000",
  "success": 0,
  "cache": 0,
  "api_info": "today:0 max:10000",
  "execution_time": 0.081,
  "server_time": "Beijing/2025-03-23 23:44:00",
  "call_args": [],
  "api_type": "sys",
  "request_id": "15ee0ffc041242"}
相关资料
错误码解释
状态代码(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:271449542271449542(微信同号)