diff --git a/justoneapi/generated/resources/amazon.py b/justoneapi/generated/resources/amazon.py
index 6aa25469..705e5b29 100644
--- a/justoneapi/generated/resources/amazon.py
+++ b/justoneapi/generated/resources/amazon.py
@@ -68,7 +68,7 @@ def get_best_sellers_v1(
Get Amazon best Sellers data, including rank positions, product metadata, and pricing, for identifying trending products in specific categories, market share analysis and category research, and tracking sales rank and popularity over time.
Args:
- category: Best sellers category to return products for (e.g. 'software' or 'software/229535').
+ category: Best sellers category to return products for (e.g. 'baby-products' or 'baby-products/166777011'). The value is derived from the URL path of the Amazon Best Sellers page, such as: https://www.amazon.com/Best-Sellers-Baby-Baby-Toddler-Feeding-Supplies/zgbs/baby-products/166777011
country: Country code for the Amazon product. Available Values: - `US`: United States - `AU`: Australia - `BR`: Brazil - `CA`: Canada - `CN`: China - `FR`: France - `DE`: Germany - `IN`: India - `IT`: Italy - `MX`: Mexico - `NL`: Netherlands - `SG`: Singapore - `ES`: Spain - `TR`: Turkey - `AE`: United Arab Emirates - `GB`: United Kingdom - `JP`: Japan - `SA`: Saudi Arabia - `PL`: Poland - `SE`: Sweden - `BE`: Belgium - `EG`: Egypt - `ZA`: South Africa - `IE`: Ireland
page: Page number for pagination.
"""
diff --git a/justoneapi/generated/resources/douyin.py b/justoneapi/generated/resources/douyin.py
index 39313e07..b50d360c 100644
--- a/justoneapi/generated/resources/douyin.py
+++ b/justoneapi/generated/resources/douyin.py
@@ -29,29 +29,6 @@ def get_user_detail_v3(
},
)
- def get_user_video_list_v1(
- self,
- *,
- sec_uid: str,
- max_cursor: int | None = 0,
- ) -> ApiResponse[Any]:
- """
- User Published Videos
-
- Get Douyin (TikTok China) user Published Videos data, including captions, covers, and publish times, for account monitoring.
-
- Args:
- sec_uid: The unique user ID (sec_uid) on Douyin.
- max_cursor: Pagination cursor; use 0 for the first page, and the `max_cursor` from the previous response for subsequent pages.
- """
- return self._get(
- "/api/douyin/get-user-video-list/v1",
- {
- "secUid": sec_uid,
- "maxCursor": max_cursor,
- },
- )
-
def get_user_video_list_v3(
self,
*,
diff --git a/justoneapi/generated/resources/douyin_xingtu.py b/justoneapi/generated/resources/douyin_xingtu.py
index e8c82c51..0ae47031 100644
--- a/justoneapi/generated/resources/douyin_xingtu.py
+++ b/justoneapi/generated/resources/douyin_xingtu.py
@@ -782,29 +782,6 @@ def get_kol_spread_info_v1(
},
)
- def search_douyin_kol_v1(
- self,
- *,
- body: str,
- accept_cache: bool | None = False,
- ) -> ApiResponse[Any]:
- """
- Legacy KOL Search
-
- Get Douyin Creator Marketplace (Xingtu) legacy KOL Search data, including preserving the request format, for creator evaluation, campaign planning, and marketplace research.
-
- Args:
- body: JSON request body.
- accept_cache: Enable cache.
- """
- return self._get(
- "/api/douyin-xingtu/search-douyin-kol/v1",
- {
- "body": body,
- "acceptCache": accept_cache,
- },
- )
-
def search_kol_simple_v1(
self,
*,
@@ -1033,32 +1010,6 @@ def get_kol_rec_videos_v1(
},
)
- def search_for_author_square_v3(
- self,
- *,
- page: int,
- fans_low: int,
- fans_high: int,
- ) -> ApiResponse[Any]:
- """
- Creator Search
-
- Get Douyin Creator Marketplace (Xingtu) creator Search data, including filters, returning profile, and audience, for discovery, comparison, and shortlist building.
-
- Args:
- page: Page number.
- fans_low: Minimum fans count.
- fans_high: Maximum fans count.
- """
- return self._get(
- "/api/douyin-xingtu/search-for-author-square/v3",
- {
- "page": page,
- "fansLow": fans_low,
- "fansHigh": fans_high,
- },
- )
-
def get_kol_daily_fans_v1(
self,
*,
diff --git a/justoneapi/generated/resources/taobao.py b/justoneapi/generated/resources/taobao.py
index cd0a0365..68fdf461 100644
--- a/justoneapi/generated/resources/taobao.py
+++ b/justoneapi/generated/resources/taobao.py
@@ -29,6 +29,26 @@ def get_item_detail_v1(
},
)
+ def get_item_detail_v2(
+ self,
+ *,
+ item_id: str,
+ ) -> ApiResponse[Any]:
+ """
+ Product Details
+
+ Get Taobao and Tmall product Details data through the task-backed v2 flow. If data is not ready within a short wait, the response returns a pending task status.
+
+ Args:
+ item_id: AUnique product identifier on Taobao/Tmall (item ID).
+ """
+ return self._get(
+ "/api/taobao/get-item-detail/v2",
+ {
+ "itemId": item_id,
+ },
+ )
+
def get_item_detail_v4(
self,
*,
diff --git a/justoneapi/generated/resources/xiaohongshu.py b/justoneapi/generated/resources/xiaohongshu.py
index 7bb4a4b1..ad2064b4 100644
--- a/justoneapi/generated/resources/xiaohongshu.py
+++ b/justoneapi/generated/resources/xiaohongshu.py
@@ -246,7 +246,7 @@ def search_note_v2(
page: Page number for pagination.
sort: Sort order for the result set. Available Values: - `general`: General - `popularity_descending`: Popularity Descending - `time_descending`: Time Descending - `comment_descending`: Comment Descending - `collect_descending`: Collect Descending
note_type: Note type filter. Available Values: - `_0`: General - `_1`: Video - `_2`: Normal
- note_time: Note publish time filter. Available Values: - `一天内`: Within one day - `一周内`: Within a week - `半年内`: Within half a year
+ note_time: Note publish time filter. This parameter is for reference only and does not have much effect. Available Values: - `一天内`: Within one day - `一周内`: Within a week - `半年内`: Within half a year
"""
return self._get(
"/api/xiaohongshu/search-note/v2",
diff --git a/justoneapi/generated/resources/xiaohongshu_pgy.py b/justoneapi/generated/resources/xiaohongshu_pgy.py
index a0a57561..36a859b4 100644
--- a/justoneapi/generated/resources/xiaohongshu_pgy.py
+++ b/justoneapi/generated/resources/xiaohongshu_pgy.py
@@ -532,32 +532,6 @@ def get_kol_note_list_v1(
},
)
- def get_kol_data_summary_v1(
- self,
- *,
- kol_id: str,
- business: str,
- accept_cache: bool | None = False,
- ) -> ApiResponse[Any]:
- """
- Data Summary
-
- Get Xiaohongshu Creator Marketplace (Pugongying) summary data, including activity, engagement, and audience growth, for creator evaluation, campaign planning, and creator benchmarking.
-
- Args:
- kol_id: KOL ID.
- business: Business type. Available Values: - `_0`: Normal notes - `_1`: Cooperation notes
- accept_cache: Enable cache.
- """
- return self._get(
- "/api/xiaohongshu-pgy/get-kol-data-summary/v1",
- {
- "kolId": kol_id,
- "business": business,
- "acceptCache": accept_cache,
- },
- )
-
def get_kol_data_summary_v2(
self,
*,
diff --git a/openapi/public-api.json b/openapi/public-api.json
index 4cf7025d..c0b39c5b 100644
--- a/openapi/public-api.json
+++ b/openapi/public-api.json
@@ -56,7 +56,7 @@
}
},
{
- "description": "Best sellers category to return products for (e.g. 'software' or 'software/229535').",
+ "description": "Best sellers category to return products for (e.g. 'baby-products' or 'baby-products/166777011'). The value is derived from the URL path of the Amazon Best Sellers page, such as: https://www.amazon.com/Best-Sellers-Baby-Baby-Toddler-Feeding-Supplies/zgbs/baby-products/166777011",
"in": "query",
"name": "category",
"required": true,
@@ -114,578 +114,23 @@
}
],
"responses": {
- "default": {
+ "200": {
"content": {
- "application/json": {
- "example": {
- "code": 0,
- "data": {
- "best_sellers": [
- {
- "asin": "B0FWV56H48",
- "product_num_ratings": 3124,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/71OcM906MLL._AC_UL900_SR900,600_.jpg",
- "product_price": "$55.99",
- "product_star_rating": "3.7",
- "product_title": "TurboTax Deluxe Desktop Edition 2025, Federal & State Tax Return [Win11/Mac14 Download]",
- "product_url": "https://www.amazon.com/dp/B0FWV56H48",
- "rank": 1,
- "rank_change_label": null
- },
- {
- "asin": "B0FRPW868X",
- "product_num_ratings": 1440,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/611uM-FzipL._AC_UL900_SR900,600_.jpg",
- "product_price": "$40.99",
- "product_star_rating": "3.9",
- "product_title": "H&R Block Tax Software Deluxe + State 2025 Win/Mac [PC/Mac Online Code]",
- "product_url": "https://www.amazon.com/dp/B0FRPW868X",
- "rank": 2,
- "rank_change_label": null
- },
- {
- "asin": "B0DHYGWYJ6",
- "product_num_ratings": 14899,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/71UbHaUeeUL._AC_UL900_SR900,600_.jpg",
- "product_price": "$79.99",
- "product_star_rating": "4.4",
- "product_title": "[OLD VERSION] TurboTax Deluxe 2024 Tax Software, Federal & State Tax Return [PC/MAC Download]",
- "product_url": "https://www.amazon.com/dp/B0DHYGWYJ6",
- "rank": 3,
- "rank_change_label": null
- },
- {
- "asin": "B0DGVQMGBB",
- "product_num_ratings": 1645,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/61-3UnDAw3L._AC_UL900_SR900,600_.jpg",
- "product_price": "$179.99",
- "product_star_rating": "4",
- "product_title": "Microsoft Office Home 2024 | Classic Office Apps: Word, Excel, PowerPoint | One-Time Purchase for a single Windows laptop or ",
- "product_url": "https://www.amazon.com/dp/B0DGVQMGBB",
- "rank": 4,
- "rank_change_label": null
- },
- {
- "asin": "B07Q33SJDW",
- "product_num_ratings": 16411,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/71dIA+61J2L._AC_UL900_SR900,600_.jpg",
- "product_price": "$24.99",
- "product_star_rating": "4",
- "product_title": "Norton 360 Deluxe 2026 Ready, Antivirus software for 5 Devices with Auto-Renewal – Includes Advanced AI Scam Protection, VPN,",
- "product_url": "https://www.amazon.com/dp/B07Q33SJDW",
- "rank": 5,
- "rank_change_label": null
- },
- {
- "asin": "B0BB2GF9WW",
- "product_num_ratings": 2139,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/51ih+NGp8LL._AC_UL900_SR900,600_.jpg",
- "product_price": "$24.99",
- "product_star_rating": "4.2",
- "product_title": "McAfee Total Protection 5-Device | AntiVirus Software 2026 for Windows PC & Mac, AI Scam Detection, VPN, Password Manager, Id",
- "product_url": "https://www.amazon.com/dp/B0BB2GF9WW",
- "rank": 6,
- "rank_change_label": null
- },
- {
- "asin": "B0823GT5JG",
- "product_num_ratings": 645,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/61py58y88zL._AC_UL900_SR900,600_.jpg",
- "product_price": "$15.00",
- "product_star_rating": "3.4",
- "product_title": "iFit Train - Monthly Membership",
- "product_url": "https://www.amazon.com/dp/B0823GT5JG",
- "rank": 7,
- "rank_change_label": null
- },
- {
- "asin": "B09MYJ1R6L",
- "product_num_ratings": 2355,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/61JfosHunyL._AC_UL900_SR900,600_.jpg",
- "product_price": "$119.99",
- "product_star_rating": "4.1",
- "product_title": "Microsoft System Builder | Windоws 11 Home | Intended use for new systems | Install on a new PC | Branded by Microsoft",
- "product_url": "https://www.amazon.com/dp/B09MYJ1R6L",
- "rank": 8,
- "rank_change_label": null
- },
- {
- "asin": "B0FRP6Y99R",
- "product_num_ratings": 54,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/61Bey2onUWL._AC_UL900_SR900,600_.jpg",
- "product_price": "$29.99",
- "product_star_rating": "3.3",
- "product_title": "Bitdefender Total Security - 3 Devices | 1 year Subscription with Auto-Renewal | PC/Mac | Activation Code by email [Online Co",
- "product_url": "https://www.amazon.com/dp/B0FRP6Y99R",
- "rank": 9,
- "rank_change_label": null
- },
- {
- "asin": "B092M5G1G7",
- "product_num_ratings": 1453,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/61IHAqDMolL._AC_UL900_SR900,600_.jpg",
- "product_price": "$65.00",
- "product_star_rating": "4.7",
- "product_title": "Mullvad VPN | 12 Months for 5 Devices | Protect Your Privacy with Easy-To-Use Security VPN Service",
- "product_url": "https://www.amazon.com/dp/B092M5G1G7",
- "rank": 10,
- "rank_change_label": null
- },
- {
- "asin": "B07DDL3N69",
- "product_num_ratings": 1931,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/71dSKXXc54L._AC_UL900_SR900,600_.jpg",
- "product_price": "$29.99",
- "product_star_rating": "4.3",
- "product_title": "Webroot Internet Security Complete | Antivirus Software 2026 | 5 Device | 1 Year Download for PC/Mac/Chromebook/Android/IOS +",
- "product_url": "https://www.amazon.com/dp/B07DDL3N69",
- "rank": 11,
- "rank_change_label": null
- },
- {
- "asin": "B07K98XDX8",
- "product_num_ratings": 6317,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/614fv+QVMTL._AC_UL900_SR900,600_.jpg",
- "product_price": "$24.99",
- "product_star_rating": "4",
- "product_title": "McAfee Total Protection 3-Device 2025 Ready |Security Software Includes Antivirus, Secure VPN, Password Manager, Identity Mon",
- "product_url": "https://www.amazon.com/dp/B07K98XDX8",
- "rank": 12,
- "rank_change_label": null
- },
- {
- "asin": "B076VQ4Y4J",
- "product_num_ratings": 6342,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/71U0TfOBbWL._AC_UL900_SR900,600_.jpg",
- "product_price": "$44.95",
- "product_star_rating": "4.2",
- "product_title": "Laplink PCmover Ultimate 11 - Migration of your Applications, Files and Settings from an Old PC to a New PC - Data Transfer S",
- "product_url": "https://www.amazon.com/dp/B076VQ4Y4J",
- "rank": 13,
- "rank_change_label": null
- },
- {
- "asin": "B09WCTTXQ6",
- "product_num_ratings": 798,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/61R6ivLSfrL._AC_UL900_SR900,600_.jpg",
- "product_price": "$99.00",
- "product_star_rating": "3.6",
- "product_title": "Windows 11 Pro Upgrade, from Windows 11 Home (Digital Download)",
- "product_url": "https://www.amazon.com/dp/B09WCTTXQ6",
- "rank": 14,
- "rank_change_label": null
- },
- {
- "asin": "B0CLBV27N2",
- "product_num_ratings": 16699,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/719rCYQpjdL._AC_UL900_SR900,600_.jpg",
- "product_price": "$69.99",
- "product_star_rating": "4.4",
- "product_title": "[Old Version] TurboTax Deluxe 2023, Federal & State Tax Return [PC/Mac Download]",
- "product_url": "https://www.amazon.com/dp/B0CLBV27N2",
- "rank": 15,
- "rank_change_label": null
- },
- {
- "asin": "B07Q6B5YL5",
- "product_num_ratings": 5659,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/71BOIz4Tx1L._AC_UL900_SR900,600_.jpg",
- "product_price": "$35.94",
- "product_star_rating": "4.1",
- "product_title": "Norton 360 Premium 2026 Ready, Antivirus software for 10 Devices with Auto-Renewal – Includes Advanced AI Scam Protection, VP",
- "product_url": "https://www.amazon.com/dp/B07Q6B5YL5",
- "rank": 16,
- "rank_change_label": null
- },
- {
- "asin": "B07Q8JGCSQ",
- "product_num_ratings": 6299,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/719bgx+IiYL._AC_UL900_SR900,600_.jpg",
- "product_price": "$19.99",
- "product_star_rating": "3.9",
- "product_title": "Norton 360 Deluxe 2026 Ready, Antivirus software for 3 Devices with Auto-Renewal – Includes Advanced AI Scam Protection, VPN,",
- "product_url": "https://www.amazon.com/dp/B07Q8JGCSQ",
- "rank": 17,
- "rank_change_label": null
- },
- {
- "asin": "B0BZ2K72LD",
- "product_num_ratings": 672,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/61jtjDEWulL._AC_UL900_SR900,600_.jpg",
- "product_price": "$26.99",
- "product_star_rating": "4.2",
- "product_title": "McAfee Total Protection 3-Device | 15 Month Subscription with Auto-Renewal | AI Scam Detection, AntiVirus Software 2026 for W",
- "product_url": "https://www.amazon.com/dp/B0BZ2K72LD",
- "rank": 18,
- "rank_change_label": null
- },
- {
- "asin": "B0DJQ2V9QR",
- "product_num_ratings": 3746,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/51+fonAXhPL._AC_UL900_SR900,600_.jpg",
- "product_price": "$59.99",
- "product_star_rating": "4.2",
- "product_title": "(Old Version) H&R Block Tax Software Deluxe + State 2024 with Refund Bonus Offer (Amazon Exclusive) Win/Mac [PC/Mac Online Co",
- "product_url": "https://www.amazon.com/dp/B0DJQ2V9QR",
- "rank": 19,
- "rank_change_label": null
- },
- {
- "asin": "B0CD37PMCL",
- "product_num_ratings": 953,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/618QqPzeZfL._AC_UL900_SR900,600_.jpg",
- "product_price": "$38.63",
- "product_star_rating": "3.9",
- "product_title": "NordVPN Plus, 10 Devices, 1-Year, VPN & Password Manager Software Bundle, Digital Code",
- "product_url": "https://www.amazon.com/dp/B0CD37PMCL",
- "rank": 20,
- "rank_change_label": null
- },
- {
- "asin": "B0CPH9FWB4",
- "product_num_ratings": 396,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/612-BLf1rbL._AC_UL900_SR900,600_.jpg",
- "product_price": "$9.99",
- "product_star_rating": "4.2",
- "product_title": "Wyze Security Plan - Cam Unlimited | Unlimited Cameras | 1 Month Subscription. Full AI features | Facial Recognition for Frie",
- "product_url": "https://www.amazon.com/dp/B0CPH9FWB4",
- "rank": 21,
- "rank_change_label": null
- },
- {
- "asin": "B07Q4QZGFR",
- "product_num_ratings": 1216,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/71U+ZLx-qWL._AC_UL900_SR900,600_.jpg",
- "product_price": "$239.88",
- "product_star_rating": "4",
- "product_title": "Adobe Acrobat Pro | PDF Software | Convert, Edit, E-Sign, Protect | PC/Mac Online Code | Activation Required",
- "product_url": "https://www.amazon.com/dp/B07Q4QZGFR",
- "rank": 22,
- "rank_change_label": null
- },
- {
- "asin": "B0DT54B895",
- "product_num_ratings": 109,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/5142rSuCQ-L._AC_UL900_SR900,600_.jpg",
- "product_price": "$249.99",
- "product_star_rating": "4",
- "product_title": "Microsoft Office Home & Business 2024 | Classic Desktop Apps: Word, Excel, PowerPoint, Outlook and OneNote | One-Time Purchas",
- "product_url": "https://www.amazon.com/dp/B0DT54B895",
- "rank": 23,
- "rank_change_label": null
- },
- {
- "asin": "B084L8X5VV",
- "product_num_ratings": 1386,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/51ar4vgTBCL._AC_UL900_SR900,600_.jpg",
- "product_price": "$39.99",
- "product_star_rating": "4.3",
- "product_title": "Malwarebytes Premium | Amazon Exclusive | 18 Months, 2 Devices | Windows, Mac OS, Android, Apple iOS, Chrome [Online Code]",
- "product_url": "https://www.amazon.com/dp/B084L8X5VV",
- "rank": 24,
- "rank_change_label": null
- },
- {
- "asin": "B07VGCN1K2",
- "product_num_ratings": 2264,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/71OFYR9xzUL._AC_UL900_SR900,600_.jpg",
- "product_price": "$39.99",
- "product_star_rating": "4.1",
- "product_title": "Norton 360 Platinum 2026 Ready, Antivirus software for 20 Devices with Auto-Renewal – 3 Months FREE - Includes Advanced AI Sc",
- "product_url": "https://www.amazon.com/dp/B07VGCN1K2",
- "rank": 25,
- "rank_change_label": null
- },
- {
- "asin": "B07Q69X7XL",
- "product_num_ratings": 3145,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/71+FQ-+PUrL._AC_UL900_SR900,600_.jpg",
- "product_price": "$14.99",
- "product_star_rating": "3.7",
- "product_title": "Norton AntiVirus Plus 2026 Ready, Antivirus software for 1 Device with Auto-Renewal – Includes Advanced AI Scam Protection, P",
- "product_url": "https://www.amazon.com/dp/B07Q69X7XL",
- "rank": 26,
- "rank_change_label": null
- },
- {
- "asin": "B07DDJRW7Y",
- "product_num_ratings": 431,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/71usJ80hjZL._AC_UL900_SR900,600_.jpg",
- "product_price": "$24.99",
- "product_star_rating": "4.4",
- "product_title": "Webroot Internet Security Complete Antivirus Software 2026 10 Device 1 Year Download for PC/Mac/Chromebook/Android/IOS + Pass",
- "product_url": "https://www.amazon.com/dp/B07DDJRW7Y",
- "rank": 27,
- "rank_change_label": null
- },
- {
- "asin": "B0CFSX431Z",
- "product_num_ratings": 554,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/61ypcFpjCuL._AC_UL900_SR900,600_.jpg",
- "product_price": "$75.99",
- "product_star_rating": "3.6",
- "product_title": "Quicken Classic Deluxe for New Subscribers| 1 Year [PC/Mac Online Code]",
- "product_url": "https://www.amazon.com/dp/B0CFSX431Z",
- "rank": 28,
- "rank_change_label": null
- },
- {
- "asin": "B0BB2N3SM3",
- "product_num_ratings": 620,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/51SDRZlGPkL._AC_UL900_SR900,600_.jpg",
- "product_price": "$39.99",
- "product_star_rating": "4.3",
- "product_title": "McAfee+ Premium Individual Unlimited Devices | AntiVirus Software 2026 for Windows PC & Mac, AI Scam Detection, VPN, Data Rem",
- "product_url": "https://www.amazon.com/dp/B0BB2N3SM3",
- "rank": 29,
- "rank_change_label": null
- },
- {
- "asin": "B07Q6ZPC1Q",
- "product_num_ratings": 1449,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/517ul+lt2GL._AC_UL900_SR900,600_.jpg",
- "product_price": "$29.99",
- "product_star_rating": "3.5",
- "product_title": "Acrobat Pro | 1-Month Subscription | PDF Software |Convert, Edit, E-Sign, Protect |Activation Required [PC/Mac Online Code]",
- "product_url": "https://www.amazon.com/dp/B07Q6ZPC1Q",
- "rank": 30,
- "rank_change_label": null
- },
- {
- "asin": "B0B8QRX8TN",
- "product_num_ratings": 43,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/7199dmazYtL._AC_UL900_SR900,600_.jpg",
- "product_price": "$65.99",
- "product_star_rating": "3.9",
- "product_title": "Parallels Desktop 26 for Mac Pro Edition | Run Windows on Mac Virtual Machine Software| Authorized by Microsoft | 1 Year Subs",
- "product_url": "https://www.amazon.com/dp/B0B8QRX8TN",
- "rank": 31,
- "rank_change_label": null
- },
- {
- "asin": "B07BFRVMMN",
- "product_num_ratings": 3183,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/61LkaCrZevL._AC_UL900_SR900,600_.jpg",
- "product_price": "$29.99",
- "product_star_rating": "4.2",
- "product_title": "McAfee Total Protection Unlimited-Devices | AntiVirus Software 2026 for Windows PC & Mac, AI Scam Detection, VPN, Password Ma",
- "product_url": "https://www.amazon.com/dp/B07BFRVMMN",
- "rank": 32,
- "rank_change_label": null
- },
- {
- "asin": "B07QLYWQRQ",
- "product_num_ratings": 11185,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/71EgtBunTjL._AC_UL900_SR900,600_.jpg",
- "product_price": "$24.99",
- "product_star_rating": "4.2",
- "product_title": "Norton 360 Deluxe 2026 Ready, Antivirus software for 5 Devices with Auto-Renewal – Includes Advanced AI Scam Protection, VPN,",
- "product_url": "https://www.amazon.com/dp/B07QLYWQRQ",
- "rank": 33,
- "rank_change_label": null
- },
- {
- "asin": "B0D48139YN",
- "product_num_ratings": 249,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/81R4yk+Jd4L._AC_UL900_SR900,600_.jpg",
- "product_price": "$239.88",
- "product_star_rating": "3.8",
- "product_title": "Adobe Creative Cloud Pro STE | Student & Teacher Edition | 20+ creative apps plus 100GB Storage |12-Month Subscription | PC/M",
- "product_url": "https://www.amazon.com/dp/B0D48139YN",
- "rank": 34,
- "rank_change_label": null
- },
- {
- "asin": "B07CY6RYFW",
- "product_num_ratings": 159,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/71VKV+o8ZwL._AC_UL900_SR900,600_.jpg",
- "product_price": "$99.99",
- "product_star_rating": "4.6",
- "product_title": "Bitdefender Family Pack - 15 Devices | 2 year Subscription | PC/Mac | Activation Code by email",
- "product_url": "https://www.amazon.com/dp/B07CY6RYFW",
- "rank": 35,
- "rank_change_label": null
- },
- {
- "asin": "B09VLYKW94",
- "product_num_ratings": 968,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/51EzRHdZ7lL._AC_UL900_SR900,600_.jpg",
- "product_price": "$39.13",
- "product_star_rating": "4.1",
- "product_title": "Norton Utilities Ultimate for 10 Devices, Keep your devices running like new - for Windows PC, Android and iOS (Download)",
- "product_url": "https://www.amazon.com/dp/B09VLYKW94",
- "rank": 36,
- "rank_change_label": null
- },
- {
- "asin": "B07QHLRL1H",
- "product_num_ratings": 1282,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/71+be+kE1HL._AC_UL900_SR900,600_.jpg",
- "product_price": "$39.99",
- "product_star_rating": "3.9",
- "product_title": "PCmover Professional 11 (1 Use) [PC Download]",
- "product_url": "https://www.amazon.com/dp/B07QHLRL1H",
- "rank": 37,
- "rank_change_label": null
- },
- {
- "asin": "B0BB2P338G",
- "product_num_ratings": 502,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/61rLuVK-EpL._AC_UL900_SR900,600_.jpg",
- "product_price": "$19.99",
- "product_star_rating": "4.3",
- "product_title": "McAfee Total Protection 1-Device | AntiVirus Software 2026 for Windows PC & Mac, AI Scam Detection, VPN, Password Manager, Id",
- "product_url": "https://www.amazon.com/dp/B0BB2P338G",
- "rank": 38,
- "rank_change_label": null
- },
- {
- "asin": "B083F3JKNN",
- "product_num_ratings": 3300,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/81qiOJgx8AL._AC_UL900_SR900,600_.jpg",
- "product_price": "$11.99",
- "product_star_rating": "3.8",
- "product_title": "Ralix Reinstall DVD For Windows 10 All Versions 32/64 bit. Recover, Restore, Repair Boot Disc, and Install to Factory Default",
- "product_url": "https://www.amazon.com/dp/B083F3JKNN",
- "rank": 39,
- "rank_change_label": null
- },
- {
- "asin": "B08X2L57CT",
- "product_num_ratings": 230,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/61BJftv4SvL._AC_UL900_SR900,600_.jpg",
- "product_price": "$39.99",
- "product_star_rating": "4.4",
- "product_title": "ESET Home Security Essential | Antivirus | 2025 Edition | 3 Devices | 1 Year | Safe Banking | Privacy Protection | IOT Protec",
- "product_url": "https://www.amazon.com/dp/B08X2L57CT",
- "rank": 40,
- "rank_change_label": null
- },
- {
- "asin": "B093N4F3VV",
- "product_num_ratings": 1358,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/61KtvN1DKAL._AC_UL900_SR900,600_.jpg",
- "product_price": "$99.99",
- "product_star_rating": "4.2",
- "product_title": "Corel WordPerfect Office Home & Student 2021 | Office Suite of Word Processor, Spreadsheets & Presentation Software [PC Downl",
- "product_url": "https://www.amazon.com/dp/B093N4F3VV",
- "rank": 41,
- "rank_change_label": null
- },
- {
- "asin": "B0CJCWHXH2",
- "product_num_ratings": 4731,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/51WNth-N57L._AC_UL900_SR900,600_.jpg",
- "product_price": "$49.99",
- "product_star_rating": "4.3",
- "product_title": "(Old Version) H&R Block Tax Software Deluxe + State 2023 with Refund Bonus Offer (Amazon Exclusive) (PC/MAC Download)",
- "product_url": "https://www.amazon.com/dp/B0CJCWHXH2",
- "rank": 42,
- "rank_change_label": null
- },
- {
- "asin": "B09H7F77JR",
- "product_num_ratings": 1015,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/61hSSVPvT3L._AC_UL900_SR900,600_.jpg",
- "product_price": "$229.99",
- "product_star_rating": "4",
- "product_title": "Microsoft Office Home & Business 2021 | Word, Excel, PowerPoint, Outlook | One-time purchase for 1 PC or Mac | Instant Downlo",
- "product_url": "https://www.amazon.com/dp/B09H7F77JR",
- "rank": 43,
- "rank_change_label": null
- },
- {
- "asin": "3959828241",
- "product_num_ratings": 1810,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/71NYA6BO3+L._AC_UL900_SR900,600_.jpg",
- "product_price": "$14.99",
- "product_star_rating": "4.1",
- "product_title": "Office Suite 2025 Special Edition for Windows 11-10-8-7-Vista-XP | PC Software and 1.000 New Fonts | Alternative to Microsoft",
- "product_url": "https://www.amazon.com/dp/3959828241",
- "rank": 44,
- "rank_change_label": null
- },
- {
- "asin": "B0CM4F111Z",
- "product_num_ratings": 269,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/71HHcF-XFtL._AC_UL900_SR900,600_.jpg",
- "product_price": "$59.00",
- "product_star_rating": "3.9",
- "product_title": "Tech-Shop-pro Compatible with install Key Included USB For Windows 11 Home OEM Version 64 bit. Recover, Restore, Repair Boot ",
- "product_url": "https://www.amazon.com/dp/B0CM4F111Z",
- "rank": 45,
- "rank_change_label": null
- },
- {
- "asin": "B0BH5P7142",
- "product_num_ratings": 3570,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/71SKL1biC-L._AC_UL900_SR900,600_.jpg",
- "product_price": "$119.99",
- "product_star_rating": "4.5",
- "product_title": "[Old Version] TurboTax Home & Business 2022 Tax Software, Federal and State Tax Return, [Amazon Exclusive] [PC/MAC Download]",
- "product_url": "https://www.amazon.com/dp/B0BH5P7142",
- "rank": 46,
- "rank_change_label": null
- },
- {
- "asin": "B07Q55XCC9",
- "product_num_ratings": 1196,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/71KEmJTcXCL._AC_UL900_SR900,600_.jpg",
- "product_price": "$24.99",
- "product_star_rating": "3.8",
- "product_title": "Norton 360 Standard 2026 Ready, Antivirus software for 1 Device with Auto-Renewal – Includes Advanced AI Scam Protection, VPN",
- "product_url": "https://www.amazon.com/dp/B07Q55XCC9",
- "rank": 47,
- "rank_change_label": null
- },
- {
- "asin": "B0CRVSWNKR",
- "product_num_ratings": 260,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/71RlVIq332L._AC_UL900_SR900,600_.jpg",
- "product_price": "$69.99",
- "product_star_rating": "3.7",
- "product_title": "TrulyOffice 2024 Family Lifetime License for Windows | 4 in 1 All Access TrulyOffice Suite | Words, Sheets, Slides, and Cloud",
- "product_url": "https://www.amazon.com/dp/B0CRVSWNKR",
- "rank": 48,
- "rank_change_label": null
- },
- {
- "asin": "B07ZPCNJC1",
- "product_num_ratings": 1495,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/61zviPfwJnL._AC_UL900_SR900,600_.jpg",
- "product_price": "$11.99",
- "product_star_rating": "3.4",
- "product_title": "Ralix Reinstall DVD For Windows 7 All Versions 32/64 bit. Recover, Restore, Repair Boot Disc, and Install to Factory Default ",
- "product_url": "https://www.amazon.com/dp/B07ZPCNJC1",
- "rank": 49,
- "rank_change_label": null
- },
- {
- "asin": "B07BFS3G7P",
- "product_num_ratings": 14454,
- "product_photo": "https://images-na.ssl-images-amazon.com/images/I/61PrVJYw-7L._AC_UL900_SR900,600_.jpg",
- "product_price": "$24.99",
- "product_star_rating": "4.2",
- "product_title": "McAfee Total Protection | 3 Device | Antivirus Internet Security Software | VPN, Password Manager, Dark Web Monitoring | 1 Ye",
- "product_url": "https://www.amazon.com/dp/B07BFS3G7P",
- "rank": 50,
- "rank_change_label": null
- }
- ],
- "category_name": "Software",
- "country": "US",
- "domain": "www.amazon.com"
- }
+ "*/*": {
+ "schema": {
+ "$ref": "#/components/schemas/Result"
}
}
},
- "description": "default response"
+ "description": "OK"
}
},
"summary": "Best Sellers",
"tags": [
"Amazon"
],
+ "x-api-version": "v1",
+ "x-highlights": [],
"x-order": "29001200"
}
},
@@ -781,24 +226,30 @@
}
],
"responses": {
- "default": {
+ "200": {
"content": {
- "application/json": {}
+ "*/*": {
+ "schema": {
+ "$ref": "#/components/schemas/Result"
+ }
+ }
},
- "description": "default response"
+ "description": "OK"
}
},
"summary": "Products By Category",
"tags": [
"Amazon"
],
+ "x-api-version": "v1",
+ "x-highlights": [],
"x-order": "29001300"
}
},
"/api/amazon/get-product-detail/v1": {
"get": {
"description": "Get Amazon product Details data, including title, brand, and price, for building product catalogs and enriching item content (e.g., images), price monitoring and availability tracking, and e-commerce analytics and competitor tracking.",
- "operationId": "getProductDetailV1",
+ "operationId": "getAmazonProductDetailV1",
"parameters": [
{
"description": "Authentication token for this API service.",
@@ -857,388 +308,23 @@
}
],
"responses": {
- "default": {
+ "200": {
"content": {
- "application/json": {
- "example": {
- "code": 0,
- "data": {
- "about_product": [
- "Wireless Cat Drinking Fountain: PETKIT new upgraded wireless water dispenser, no need to plug in, you can place it anywhere: kitchen, bedroom, balcony, etc., bring you a new feeling; 5000mAh high-capacity battery, service life up to 83 days! No more worry about your cat or dog running out of water during power outages or short trips! When the fountain is short of water, the pump will automatically stop working to prevent the device from burning out.",
- "3L Large Capacity: This cat water dispenser has a capacity of 3l/101 fl oz, say goodbye to frequent refilling, suitable for multi-pet households, the filled dog water dispenser can provide a week's supply of water for two cats or a dog.",
- "Smart App Monitoring: The PETKIT app tracks your pet's drinking habits 24/7 and generates weekly/monthly drinking insights, allowing you to better understand your pet's drinking frequency and timing. The app also reminds you to replace the filter and clean the water dispenser regularly, so you no longer have to worry about your pet's drinking safety. In addition, you can activate the motion sensor in the app, and when your pet approach within 3.94 inches, the water will flow continuously for 1 minute to encourage them to drink more.",
- "Fresh Water in Multiple Modes: Customize continuous flow mode or the intermittent mode based on Pet’s Preference, the multi-layer filter utilizes a unidirectional recirculation filtration system that filters out hair, sediment, dirt, etc., providing pets with a hygienic, pure drinking experience.",
- "Quietly & Easy to Clean: The cat fountain features a removable tank design that is very easy to clean, and with a wireless pump, you can easily detach the interior without worrying about tangled cords. With a sound of less than 25dB, you can sleep peacefully even if the fountain is next to you and your pets.",
- "Friendly Reminder: To ensure your pet's drinking water remains healthy, we recommend thoroughly cleaning the water fountain once a week, including the pump, water tank, and tray. The cleaning brush included in the package can assist you in this process. Disassembling and cleaning the pump can extend its lifespan and effectively resolve issues such as reduced water flow, no water output, or operational noise."
- ],
- "all_product_variations": {
- "B0CXHM344N": {
- "color": "White-Cordless",
- "size": "3L"
- },
- "B0FHQC19RV": {
- "color": "White-Dishwasher Safe",
- "size": "3L"
- }
- },
- "aplus_images": [
- "https://m.media-amazon.com/images/S/aplus-media-library-service-media/6cfbbed1-efda-4b6b-a07d-ce9847331038.jpg"
- ],
- "asin": "B0CXHM344N",
- "category": {
- "id": "pets",
- "name": "Pet Supplies"
- },
- "category_path": [
- {
- "id": "2619533011",
- "link": "https://www.amazon.com/pet-shops-dogs-cats-hamsters-kittens/b/ref=dp_bc_1?ie=UTF8&node=2619533011",
- "name": "Pet Supplies"
- },
- {
- "id": "2975241011",
- "link": "https://www.amazon.com/cats-supplies-kittens-catnip-tree-litter/b/ref=dp_bc_2?ie=UTF8&node=2975241011",
- "name": "Cats"
- },
- {
- "id": "2975259011",
- "link": "https://www.amazon.com/cat-water-fountain-bubbler-feeder-storage/b/ref=dp_bc_3?ie=UTF8&node=2975259011",
- "name": "Feeding & Watering Supplies"
- },
- {
- "id": "2975263011",
- "link": "https://www.amazon.com/dog-fountains/b/ref=dp_bc_4?ie=UTF8&node=2975263011",
- "name": "Fountains"
- }
- ],
- "climate_pledge_friendly": false,
- "country": "US",
- "currency": "USD",
- "deal_badge": "Ends in 11:27:48 (function(f) {var _np=(window.P._namespace(\"GoldboxUDPAssets\"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) { function isComponentRegistered(componentName) { var isRegistered = false; P.now(\"registrationStarted:\" + componentName).execute(function (loaded) { isRegistered = !!loaded; }); return isRegistered; } function setComponentRegistered(componentName) { P.declare(\"registrationStarted:\" + componentName, true); } if (!isComponentRegistered(\"count-down-controller-detailpage-dealBadge\")) { setComponentRegistered(\"count-down-controller-detailpage-dealBadge\"); P.when('jQuery').register('count-down-controller-detailpage-dealBadge', function($) { function countDown(timer) { var $timer = $(timer); var targetDateStr = $(timer).attr(\"data-target-time\"); var targetDate = Date.parse(targetDateStr); var dealBadgeSupportingText = '#dealBadgeSupportingText'; $(dealBadgeSupportingText).attr(\"aria-hidden\",\"true\"); var interval = null; interval = setInterval(function () { var diffMillis = targetDate - Date.now(); var diffSeconds = Math.floor(diffMillis / 1000); if (diffSeconds < 0) { $timer.text('00:00'); clearInterval(interval); $(dealBadgeSupportingText).removeAttr(\"aria-hidden\"); } else { var hours = Math.floor((diffSeconds / (60 * 60)) % 24); var minutes = Math.floor((diffSeconds / 60) % 60); var seconds = Math.floor(diffSeconds % 60); var hoursStr = ('0' + hours).slice(-2); var minutesStr = ('0' + minutes).slice(-2); var secondsStr = ('0' + seconds).slice(-2); var timeStr = ''; if (hours > 0) { timeStr = [hoursStr, minutesStr, secondsStr].join(':'); } else { timeStr = [minutesStr, secondsStr].join(':'); } $timer.text(timeStr); updateOffscreenText(hours, minutes, seconds) } }, 1000); } var offscreenTextEnum = { hours: 0, minutes: 1, seconds: 2, }; var offscreenTextIDs = [ '#deals_countdown_timer_from_hours_screen_reader_label', '#deals_countdown_timer_from_minutes_without_seconds_screen_reader_label', '#deals_countdown_timer_from_seconds_screen_reader_label', ]; var offscreenTextTemplates = offscreenTextIDs.map(function (id) { return $(id).text() }); var classHidden = 'aok-hidden'; var classOffscreen = 'aok-offscreen'; function updateOffscreenText(hours, minutes, seconds) { var type = getOffscrrenType(hours, minutes); var elementID = offscreenTextIDs[type]; var template = offscreenTextTemplates[type]; var text = template .replace('NO_OF_HOURS', hours) .replace('NO_OF_MINUTES', minutes) .replace('NO_OF_SECONDS', seconds); $(elementID).text(text); showOffscreenElement(elementID); offscreenTextIDs.filter(function (_, idx) { return idx != type; }).forEach(function (id) { return hideOffscreenElement(id) }); if (isTimerOver(hours, minutes, seconds)) { hideOffscreenElement(elementID); } } function getOffscrrenType(hours, minutes) { if (hours > 0) { return offscreenTextEnum.hours; } if (minutes >= 1) { return offscreenTextEnum.minutes; } return offscreenTextEnum.seconds; } function showOffscreenElement(elementID) { $(elementID).removeClass(classHidden).addClass(classOffscreen); } function hideOffscreenElement(elementID) { $(elementID).removeClass(classOffscreen).addClass(classHidden); } function isTimerOver(hours, minutes, seconds) { return hours == 0 && minutes == 0 && seconds == 0; } return { countDown : countDown }; }); } P.when('A', 'count-down-controller-detailpage-dealBadge', 'ready').execute(function(A, countDownController) { var timers = document.querySelectorAll('.detailpage-dealBadge-countdown-timer'); A.each(timers, function(timer) { countDownController.countDown(timer); }); }); }));",
- "delivery": "FREE delivery June 21 - August 5 Or fastest delivery June 19 - August 3",
- "domain": "www.amazon.com",
- "frequently_bought_together": [],
- "has_aplus": true,
- "has_brandstory": true,
- "has_video": true,
- "is_amazon_choice": false,
- "is_best_seller": false,
- "is_prime": false,
- "landing_asin": "B0CXHM344N",
- "minimum_order_quantity": null,
- "parent_asin": "B0FP2HDDJR",
- "primary_delivery_time": "June 21 - August 5",
- "product_availability": "",
- "product_byline": "Visit the PETKIT Store",
- "product_byline_link": "https://www.amazon.com/stores/PETKIT/page/ABE54506-DE7E-49D9-A3C6-D8CBCBDD2F54?lp_asin=B0CXHM344N&ref_=ast_bln&store_ref=bl_ast_dp_brandLogo_sto",
- "product_byline_links": [
- "https://www.amazon.com/stores/PETKIT/page/ABE54506-DE7E-49D9-A3C6-D8CBCBDD2F54?lp_asin=B0CXHM344N&ref_=ast_bln&store_ref=bl_ast_dp_brandLogo_sto"
- ],
- "product_condition": "Regular Price",
- "product_description": null,
- "product_details": {
- "Brand": "PETKIT",
- "Capacity": "3 Liters",
- "Color": "White-Cordless",
- "Material": "Acrylonitrile Butadiene Styrene (ABS), Stainless Steel",
- "Product Dimensions": "10.43"L x 6.73"W x 7.51"H"
- },
- "product_information": {
- "ASIN": "B0CXHM344N",
- "Batteries": "AAA batteries required. (included)",
- "Brand Name": "PETKIT",
- "Color": "White-Cordless",
- "Date First Available": "March 8, 2024",
- "Included Components": "USB charging cable, brush, filter",
- "Item Package Dimensions L x W x H": "11.02 x 8.43 x 7.24 inches",
- "Item Weight": "3.83 pounds",
- "Item model number": "EVERSWEET MAX",
- "Manufacturer": "PETKIT",
- "Material": "Acrylonitrile Butadiene Styrene (ABS), Stainless Steel",
- "Model Name": "EVERSWEET MAX",
- "Number of Items": "1",
- "Size": "3L",
- "Specific Uses for Product": "Indoor",
- "Target Audience Keyword": "Cats, Dogs",
- "Warranty Description": "1"
- },
- "product_num_offers": 1,
- "product_num_ratings": 429,
- "product_original_price": "$89.99",
- "product_photo": "https://m.media-amazon.com/images/I/61Z1j1hJ2oL._AC_SL1500_.jpg",
- "product_photos": [
- "https://m.media-amazon.com/images/I/61Z1j1hJ2oL._AC_SL1500_.jpg",
- "https://m.media-amazon.com/images/I/71jBABMHDjL._AC_SL1500_.jpg",
- "https://m.media-amazon.com/images/I/81i+PCO1i3L._AC_SL1500_.jpg",
- "https://m.media-amazon.com/images/I/613KHtne1JL._AC_SL1500_.jpg",
- "https://m.media-amazon.com/images/I/61fZDS26foL._AC_SL1500_.jpg",
- "https://m.media-amazon.com/images/I/612MFDfOpyL._AC_SL1500_.jpg",
- "https://m.media-amazon.com/images/I/51Szv1bdq-L._AC_SL1500_.jpg",
- "https://m.media-amazon.com/images/I/61uyzikBl3L._AC_SL1500_.jpg",
- "https://m.media-amazon.com/images/I/61cuXqcP8dL._AC_SL1500_.jpg"
- ],
- "product_price": "75.99",
- "product_slug": null,
- "product_star_rating": "4.3",
- "product_title": "PETKIT EVERSWEET MAX Cordless Cat Water Fountain with Motion Sensor, 101 oz/3L Pet Fountain for Cats Dogs Inside, Automatic Cat Water Dispenser Battery Operated (White-Cordless, 3L)",
- "product_url": "https://www.amazon.com/dp/B0CXHM344N",
- "product_variations": {
- "color": [
- {
- "asin": "B0CXHM344N",
- "is_available": true,
- "photo": "https://m.media-amazon.com/images/I/41LS7gfVGJL.jpg",
- "value": "White-Cordless"
- },
- {
- "asin": "B0FHQC19RV",
- "is_available": true,
- "photo": "https://m.media-amazon.com/images/I/41bo897rfVL.jpg",
- "value": "White-Dishwasher Safe"
- }
- ]
- },
- "product_variations_dimensions": [
- "color",
- "size"
- ],
- "product_videos": [
- {
- "id": "amzn1.vse.video.0c22e9357ac04d09933230ed82becdf7",
- "parent_asin": "B0FP2HDDJR",
- "product_asin": "B0CXHM344N",
- "thumbnail_url": "https://m.media-amazon.com/images/I/B15+wSymtzL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.jpg",
- "title": "PETKIT EVERSWEET MAX Cordless Cat Fountain",
- "video_height": "1080",
- "video_url": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/9e9bc4d4-e620-4004-8388-ae975fe9717c/default.jobtemplate.hls.m3u8",
- "video_width": "1920"
- },
- {
- "id": "amzn1.vse.video.03fcb7fa041e40d69c8efd6bcd8e9a49",
- "parent_asin": "B0FP2HDDJR",
- "product_asin": "B0CXHM344N",
- "thumbnail_url": "https://m.media-amazon.com/images/I/21GKXpB36oL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.jpg",
- "title": "Installation & Usage of PETKIT EVERSWEET MAX Cat Fountain",
- "video_height": "1080",
- "video_url": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/ea2de45a-9a6f-485c-9767-042383508307/default.jobtemplate.hls.m3u8",
- "video_width": "1920"
- },
- {
- "id": "amzn1.vse.video.0333553f0abd48058dd4485121ca28b8",
- "parent_asin": "B0FP2HDDJR",
- "product_asin": "B0CXHM344N",
- "thumbnail_url": "https://m.media-amazon.com/images/I/517dwIvofIL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.jpg",
- "title": "How to Clean PETKIT EVERSWEET MAX Cordless Cat Fountain",
- "video_height": "1080",
- "video_url": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/e2e3fb95-cb7a-41e0-910f-f3d967c59e89/default.jobtemplate.hls.m3u8",
- "video_width": "1920"
- },
- {
- "id": "amzn1.vse.video.0d42a350b267448490782001d6f9a196",
- "parent_asin": "B0FP2HDDJR",
- "product_asin": "B0CXHM344N",
- "thumbnail_url": "https://m.media-amazon.com/images/I/91nFdfom2pL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.png",
- "title": "ONE Year Follow-Up - What You Need To Know!",
- "video_height": "1080",
- "video_url": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/84de1bf9-a176-405b-a5b6-165f36b79b15/default.jobtemplate.hls.m3u8",
- "video_width": "1920"
- },
- {
- "id": "amzn1.vse.video.0d5aa3c994864950937eee13235d6c5d",
- "parent_asin": "B0FP2HDDJR",
- "product_asin": "B0CXHM344N",
- "thumbnail_url": "https://m.media-amazon.com/images/I/919z3fV3qPL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.png",
- "title": "Great fountain for multi-cat households and monitoring usage",
- "video_height": "1080",
- "video_url": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/4cd19cd7-03ff-412a-a48c-2ea9d4cbceae/default.jobtemplate.hls.m3u8",
- "video_width": "1920"
- },
- {
- "id": "amzn1.vse.video.0a55f378824b4f958855546eba7f59f7",
- "parent_asin": "B0FP2HDDJR",
- "product_asin": "B0CXHM344N",
- "thumbnail_url": "https://m.media-amazon.com/images/I/D1Hdg2rlMEL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.png",
- "title": "Full Review of the Petkit Eversweet Max Cat Water Fountain",
- "video_height": "1080",
- "video_url": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/406cab62-d660-4a4d-bfa1-5b10f354d749/default.jobtemplate.hls.m3u8",
- "video_width": "1920"
- },
- {
- "id": "amzn1.vse.video.0d7aac409ec44763ae006897cdb8c097",
- "parent_asin": "B0FP2HDDJR",
- "product_asin": "B0CXHM344N",
- "thumbnail_url": "https://m.media-amazon.com/images/I/51+zzXi8+SL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.jpg",
- "title": "HONEST REVIEW of PETKIT EVERSWEET MAX Cordless Cat Water Fountain",
- "video_height": "1080",
- "video_url": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/bc10e914-6fcc-40f7-a7a6-88912642ac70/default.jobtemplate.hls.m3u8",
- "video_width": "1920"
- },
- {
- "id": "amzn1.vse.video.064c7f56e92b4b5e82a270a87a31bc5f",
- "parent_asin": "B0FP2HDDJR",
- "product_asin": "B0CXHM344N",
- "thumbnail_url": "https://m.media-amazon.com/images/I/91hYrymGtvL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.jpg",
- "title": "Pet Water Fountain Petkit Eversweet Max Cordless Quiet",
- "video_height": "1920",
- "video_url": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/be8c1f32-53c6-48bb-8a25-5b067be93faa/default.vertical.jobtemplate.hls.m3u8",
- "video_width": "1080"
- }
- ],
- "rating_distribution": {
- "1": 8,
- "2": 3,
- "3": 7,
- "4": 9,
- "5": 73
- },
- "sales_volume": "200+ bought in past month",
- "top_reviews": [
- {
- "helpful_vote_statement": "20 people found this helpful",
- "is_verified_purchase": true,
- "is_vine": false,
- "review_author": "Kindle Customer",
- "review_author_avatar": "https://m.media-amazon.com/images/S/amazon-avatars-global/default.png",
- "review_author_id": "AH3LAIXLH7T2NHHPMEDTCBZEOS5A",
- "review_author_url": "https://www.amazon.com/gp/profile/amzn1.account.AH3LAIXLH7T2NHHPMEDTCBZEOS5A",
- "review_comment": "I have tried many water fountains from plastic to stainless steel and of all of them, even purchased a Petlibro water fountains as well. But This outshines the Petlibro one and The best part, it cost less, works better and is completely silent. Unlike Petlibro, petkit app functions well, is data driven and neat and orderly. It gives you data on how many times your fur babies are visiting the water, how long your battery will last off power cord, and allow you to set up how long you want your fountain to run while giving you an accurate battery life adjustment. Im only a couple months in, but love this water fountain so much. It is better than petlibro's water fountains (I have bought all of them and donated most of them). I still have petlibro's docking system one and abhor how much water is wasted by my cats licking the water on the side and spilling it. The water remains in the petkit fountain, no mess or spills, and no concerns about the battery getting wet, or even the charging cords from condensation or spills. This water fountain is the best on the market so far and I hope it lasts me a long while. I would like to get another one, but am waiting for the Petlibro one to die first. I now need an automatic food dispenser that is rfid/microchip readable from petkit please with camera! The petlibro one sucks and keeps kicking me off the app or on wifi and food gets stuck constantly! Please make this happen as I know petkit can do it better!",
- "review_date": "Reviewed in the United States on June 14, 2025",
- "review_id": "RTTMMO0CU30KS",
- "review_images": [],
- "review_link": "https://www.amazon.com/gp/customer-reviews/RTTMMO0CU30KS",
- "review_star_rating": "5",
- "review_title": "Petkit ftw- best on the market",
- "review_video": null,
- "reviewed_product_asin": "B0CXHM344N",
- "reviewed_product_variant": {
- "Color": "White-Cordless",
- "Size": "3L"
- }
- },
- {
- "helpful_vote_statement": "28 people found this helpful",
- "is_verified_purchase": true,
- "is_vine": false,
- "review_author": "Gerardo N Ruiz",
- "review_author_avatar": "https://m.media-amazon.com/images/S/amazon-avatars-global/default.png",
- "review_author_id": "AHRLNMQLLW6KBWQ7NAARI4ISEADA",
- "review_author_url": "https://www.amazon.com/gp/profile/amzn1.account.AHRLNMQLLW6KBWQ7NAARI4ISEADA",
- "review_comment": "I absolutely LOVE this water fountain for my three cats. I have tried a cheap plastic one from Walmart, a bigger ceramic one from Chewy, and then a big one gallon stainless steel one from Chewy. Every single one of these bowls were such a hassle to clean with crevices you can't get to or plastic parts and the ceramic or stainless steel ending up receiving a biofilm from the cats. Granted I've only had this fountain for a week, and I will update it if anything changes, however so far this is amazing. The ingenuity of using wireless power to operate the pump is probably one of the greatest features alone. I didn't think much of it when I made my purchase, but not having to fiddle with running the cord properly from the bowl to the outlet is just a God send. This fountain holds 3L of water, which is not too far from a gallon of water. The nice thing about this fountain is the majority of the water is enclosed where no dust, bugs, or any debris will get into the water. The stainless steel water dish has a non stick coating and is a shallow dish. Which is very nice to help prevent water from getting filthy and the dish easy to clean preventing biofilm build up. The fact that this fountain has an app to help track how often your pets are using the fountain is just amazing. It has a lot of different modes and when you run it purely on the battery you can set how often the water circulates and also turn on sensor mode so when your cat comes to drink it cycles the water. This water fountain also comes with, and I know this sounds weird to be excited about, but a really well made pipe cleaner with tweezers at the other end. After a week, I tool it apart to clean and it only took a few short minutes and I was so impressed to see very little hair in the main water reservoir. I can't say enough great things and I hope the days, weeks, months, and years to come this fountain will continue to serve me well. One more note, PetKit also sells a pump that sterlizes water using UV. I'm definitely going to be upgrading my pump after this great experience.",
- "review_date": "Reviewed in the United States on March 3, 2025",
- "review_id": "R27427JMY231GA",
- "review_images": [],
- "review_link": "https://www.amazon.com/gp/customer-reviews/R27427JMY231GA",
- "review_star_rating": "5",
- "review_title": "Great cat fountain with a great capacity and price.",
- "review_video": null,
- "reviewed_product_asin": "B0CXHM344N",
- "reviewed_product_variant": {
- "Color": "White-Cordless",
- "Size": "3L"
- }
- },
- {
- "helpful_vote_statement": "2 people found this helpful",
- "is_verified_purchase": true,
- "is_vine": false,
- "review_author": "chris schwartz",
- "review_author_avatar": "https://m.media-amazon.com/images/S/amazon-avatars-global/default.png",
- "review_author_id": "AFQCWX5XL2WSJVSZMBYHHOLGHLMA",
- "review_author_url": "https://www.amazon.com/gp/profile/amzn1.account.AFQCWX5XL2WSJVSZMBYHHOLGHLMA",
- "review_comment": "This is a great drinking fountain for a cat. It holds over a week’s worth of water. Keeps the water moving and filtered. My cat likes the moving water. And I like seeing how often she drinks from it. The app shows usage info as well as reminders to add water, clean, change filters, etc. I have tried quite a few of these and this is my favorite. Design is great and it just works. It’s well built. I think it is worth the price. However, I do get the replacement filters from a 3rd party on Amazon because they are way cheaper than name brand.",
- "review_date": "Reviewed in the United States on January 3, 2026",
- "review_id": "R19MOSBSMAT5QV",
- "review_images": [],
- "review_link": "https://www.amazon.com/gp/customer-reviews/R19MOSBSMAT5QV",
- "review_star_rating": "5",
- "review_title": "I’ve tried a bunch of these and this is the one!",
- "review_video": null,
- "reviewed_product_asin": "B0CXHM344N",
- "reviewed_product_variant": {
- "Color": "White-Cordless",
- "Size": "3L"
- }
- },
- {
- "helpful_vote_statement": "One person found this helpful",
- "is_verified_purchase": true,
- "is_vine": false,
- "review_author": "Raphael Parrado",
- "review_author_avatar": "https://m.media-amazon.com/images/S/amazon-avatars-global/default.png",
- "review_author_id": "AHBLMNOEWVUCPHCZDFG5CMOX5UHA",
- "review_author_url": "https://www.amazon.com/gp/profile/amzn1.account.AHBLMNOEWVUCPHCZDFG5CMOX5UHA",
- "review_comment": "After trying a few different options, we finally found the perfect cordless water fountain for our two golden retrievers! It took them about a day to get used to it, but now it works flawlessly. The setup was simple, and the app is incredibly helpful for tracking their water intake trends. We especially love the motion detection feature—it activates when our pups approach, so we worry less about refilling and more about keeping them hydrated. It also has decent capacity, we refill it every couple of days. Couldn’t be happier with this purchase!",
- "review_date": "Reviewed in the United States on October 26, 2025",
- "review_id": "R3NAK4EPN3PY1D",
- "review_images": [],
- "review_link": "https://www.amazon.com/gp/customer-reviews/R3NAK4EPN3PY1D",
- "review_star_rating": "5",
- "review_title": "Smart Hydration Solution for Our Pups!",
- "review_video": null,
- "reviewed_product_asin": "B0CXHM344N",
- "reviewed_product_variant": {
- "Color": "White-Cordless",
- "Size": "3L"
- }
- },
- {
- "is_verified_purchase": true,
- "is_vine": false,
- "review_author": "CY",
- "review_author_avatar": "https://m.media-amazon.com/images/S/amazon-avatars-global/default.png",
- "review_author_id": "AF5SDGBY466LTYXQOZI6F3VYZT6A",
- "review_author_url": "https://www.amazon.com/gp/profile/amzn1.account.AF5SDGBY466LTYXQOZI6F3VYZT6A",
- "review_comment": "No noise at all! Very easy to assemble, and easy to clean. Just not that smart for sensing, only continuous water flow is great. But that’s fine for my cat he loves water flow. The price is a little bit too high",
- "review_date": "Reviewed in the United States on November 26, 2025",
- "review_id": "ROPNN1NYJEKQ5",
- "review_images": [],
- "review_link": "https://www.amazon.com/gp/customer-reviews/ROPNN1NYJEKQ5",
- "review_star_rating": "4",
- "review_title": "Great product, easy to clean",
- "review_video": null,
- "reviewed_product_asin": "B0CXHM344N",
- "reviewed_product_variant": {
- "Color": "White-Dishwasher Safe",
- "Size": "3L"
- }
- },
- {
- "helpful_vote_statement": "6 people found this helpful",
- "is_verified_purchase": true,
- "is_vine": false,
- "review_author": "Amazon Customer",
- "review_author_avatar": "https://m.media-amazon.com/images/S/amazon-avatars-global/default.png",
- "review_author_id": "AGVUV5YMYN5CHX65MUNJXNUSJ6CQ",
- "review_author_url": "https://www.amazon.com/gp/profile/amzn1.account.AGVUV5YMYN5CHX65MUNJXNUSJ6CQ",
- "review_comment": "This fountain is perfect for our cat! Too heavy for him to knock over or move easily but not too heavy to lift with it full. The design is great because there is no way for him to knock out the section wear the water pools. It locks in. It was super easy to put together & clean. It's super quiet! I have to check app or look close to see if it's working. We've not had any issues with it at all! Good quality parts.",
- "review_date": "Reviewed in the United States on November 14, 2025",
- "review_id": "R33OD211YANAXV",
- "review_images": [],
- "review_link": "https://www.amazon.com/gp/customer-reviews/R33OD211YANAXV",
- "review_star_rating": "5",
- "review_title": "Perfect",
- "review_video": null,
- "reviewed_product_asin": "B0CXHM344N",
- "reviewed_product_variant": {
- "Color": "White-Cordless",
- "Size": "3L"
- }
- }
- ],
- "top_reviews_global": [],
- "user_uploaded_videos": [],
- "video_thumbnail": "https://m.media-amazon.com/images/I/B15+wSymtzL.SX522_.jpg"
- }
+ "*/*": {
+ "schema": {
+ "$ref": "#/components/schemas/Result"
}
}
},
- "description": "default response"
+ "description": "OK"
}
},
"summary": "Product Details",
"tags": [
"Amazon"
],
+ "x-api-version": "v1",
+ "x-highlights": [],
"x-order": "29001000"
}
},
@@ -1304,166 +390,23 @@
}
],
"responses": {
- "default": {
+ "200": {
"content": {
- "application/json": {
- "example": {
- "code": 0,
- "data": {
- "asin": "B0CXHM344N",
- "country": "US",
- "domain": "www.amazon.com",
- "rating_distribution": {
- "1": 8,
- "2": 3,
- "3": 7,
- "4": 9,
- "5": 73
- },
- "reviews": [
- {
- "helpful_vote_statement": "20 people found this helpful",
- "is_verified_purchase": true,
- "is_vine": false,
- "review_author": "Kindle Customer",
- "review_author_avatar": "https://m.media-amazon.com/images/S/amazon-avatars-global/default.png",
- "review_author_id": "AH3LAIXLH7T2NHHPMEDTCBZEOS5A",
- "review_author_url": "https://www.amazon.com/gp/profile/amzn1.account.AH3LAIXLH7T2NHHPMEDTCBZEOS5A",
- "review_comment": "I have tried many water fountains from plastic to stainless steel and of all of them, even purchased a Petlibro water fountains as well. But This outshines the Petlibro one and The best part, it cost less, works better and is completely silent. Unlike Petlibro, petkit app functions well, is data driven and neat and orderly. It gives you data on how many times your fur babies are visiting the water, how long your battery will last off power cord, and allow you to set up how long you want your fountain to run while giving you an accurate battery life adjustment. Im only a couple months in, but love this water fountain so much. It is better than petlibro's water fountains (I have bought all of them and donated most of them). I still have petlibro's docking system one and abhor how much water is wasted by my cats licking the water on the side and spilling it. The water remains in the petkit fountain, no mess or spills, and no concerns about the battery getting wet, or even the charging cords from condensation or spills. This water fountain is the best on the market so far and I hope it lasts me a long while. I would like to get another one, but am waiting for the Petlibro one to die first. I now need an automatic food dispenser that is rfid/microchip readable from petkit please with camera! The petlibro one sucks and keeps kicking me off the app or on wifi and food gets stuck constantly! Please make this happen as I know petkit can do it better!",
- "review_date": "Reviewed in the United States on June 14, 2025",
- "review_id": "RTTMMO0CU30KS",
- "review_images": [],
- "review_link": "https://www.amazon.com/gp/customer-reviews/RTTMMO0CU30KS",
- "review_star_rating": "5",
- "review_title": "Petkit ftw- best on the market",
- "review_video": null,
- "reviewed_product_asin": "B0CXHM344N",
- "reviewed_product_variant": {
- "Color": "White-Cordless",
- "Size": "3L"
- }
- },
- {
- "helpful_vote_statement": "28 people found this helpful",
- "is_verified_purchase": true,
- "is_vine": false,
- "review_author": "Gerardo N Ruiz",
- "review_author_avatar": "https://m.media-amazon.com/images/S/amazon-avatars-global/default.png",
- "review_author_id": "AHRLNMQLLW6KBWQ7NAARI4ISEADA",
- "review_author_url": "https://www.amazon.com/gp/profile/amzn1.account.AHRLNMQLLW6KBWQ7NAARI4ISEADA",
- "review_comment": "I absolutely LOVE this water fountain for my three cats. I have tried a cheap plastic one from Walmart, a bigger ceramic one from Chewy, and then a big one gallon stainless steel one from Chewy. Every single one of these bowls were such a hassle to clean with crevices you can't get to or plastic parts and the ceramic or stainless steel ending up receiving a biofilm from the cats. Granted I've only had this fountain for a week, and I will update it if anything changes, however so far this is amazing. The ingenuity of using wireless power to operate the pump is probably one of the greatest features alone. I didn't think much of it when I made my purchase, but not having to fiddle with running the cord properly from the bowl to the outlet is just a God send. This fountain holds 3L of water, which is not too far from a gallon of water. The nice thing about this fountain is the majority of the water is enclosed where no dust, bugs, or any debris will get into the water. The stainless steel water dish has a non stick coating and is a shallow dish. Which is very nice to help prevent water from getting filthy and the dish easy to clean preventing biofilm build up. The fact that this fountain has an app to help track how often your pets are using the fountain is just amazing. It has a lot of different modes and when you run it purely on the battery you can set how often the water circulates and also turn on sensor mode so when your cat comes to drink it cycles the water. This water fountain also comes with, and I know this sounds weird to be excited about, but a really well made pipe cleaner with tweezers at the other end. After a week, I tool it apart to clean and it only took a few short minutes and I was so impressed to see very little hair in the main water reservoir. I can't say enough great things and I hope the days, weeks, months, and years to come this fountain will continue to serve me well. One more note, PetKit also sells a pump that sterlizes water using UV. I'm definitely going to be upgrading my pump after this great experience.",
- "review_date": "Reviewed in the United States on March 3, 2025",
- "review_id": "R27427JMY231GA",
- "review_images": [],
- "review_link": "https://www.amazon.com/gp/customer-reviews/R27427JMY231GA",
- "review_star_rating": "5",
- "review_title": "Great cat fountain with a great capacity and price.",
- "review_video": null,
- "reviewed_product_asin": "B0CXHM344N",
- "reviewed_product_variant": {
- "Color": "White-Cordless",
- "Size": "3L"
- }
- },
- {
- "helpful_vote_statement": "2 people found this helpful",
- "is_verified_purchase": true,
- "is_vine": false,
- "review_author": "chris schwartz",
- "review_author_avatar": "https://m.media-amazon.com/images/S/amazon-avatars-global/default.png",
- "review_author_id": "AFQCWX5XL2WSJVSZMBYHHOLGHLMA",
- "review_author_url": "https://www.amazon.com/gp/profile/amzn1.account.AFQCWX5XL2WSJVSZMBYHHOLGHLMA",
- "review_comment": "This is a great drinking fountain for a cat. It holds over a week’s worth of water. Keeps the water moving and filtered. My cat likes the moving water. And I like seeing how often she drinks from it. The app shows usage info as well as reminders to add water, clean, change filters, etc. I have tried quite a few of these and this is my favorite. Design is great and it just works. It’s well built. I think it is worth the price. However, I do get the replacement filters from a 3rd party on Amazon because they are way cheaper than name brand.",
- "review_date": "Reviewed in the United States on January 3, 2026",
- "review_id": "R19MOSBSMAT5QV",
- "review_images": [],
- "review_link": "https://www.amazon.com/gp/customer-reviews/R19MOSBSMAT5QV",
- "review_star_rating": "5",
- "review_title": "I’ve tried a bunch of these and this is the one!",
- "review_video": null,
- "reviewed_product_asin": "B0CXHM344N",
- "reviewed_product_variant": {
- "Color": "White-Cordless",
- "Size": "3L"
- }
- },
- {
- "helpful_vote_statement": "One person found this helpful",
- "is_verified_purchase": true,
- "is_vine": false,
- "review_author": "Raphael Parrado",
- "review_author_avatar": "https://m.media-amazon.com/images/S/amazon-avatars-global/default.png",
- "review_author_id": "AHBLMNOEWVUCPHCZDFG5CMOX5UHA",
- "review_author_url": "https://www.amazon.com/gp/profile/amzn1.account.AHBLMNOEWVUCPHCZDFG5CMOX5UHA",
- "review_comment": "After trying a few different options, we finally found the perfect cordless water fountain for our two golden retrievers! It took them about a day to get used to it, but now it works flawlessly. The setup was simple, and the app is incredibly helpful for tracking their water intake trends. We especially love the motion detection feature—it activates when our pups approach, so we worry less about refilling and more about keeping them hydrated. It also has decent capacity, we refill it every couple of days. Couldn’t be happier with this purchase!",
- "review_date": "Reviewed in the United States on October 26, 2025",
- "review_id": "R3NAK4EPN3PY1D",
- "review_images": [],
- "review_link": "https://www.amazon.com/gp/customer-reviews/R3NAK4EPN3PY1D",
- "review_star_rating": "5",
- "review_title": "Smart Hydration Solution for Our Pups!",
- "review_video": null,
- "reviewed_product_asin": "B0CXHM344N",
- "reviewed_product_variant": {
- "Color": "White-Cordless",
- "Size": "3L"
- }
- },
- {
- "is_verified_purchase": true,
- "is_vine": false,
- "review_author": "CY",
- "review_author_avatar": "https://m.media-amazon.com/images/S/amazon-avatars-global/default.png",
- "review_author_id": "AF5SDGBY466LTYXQOZI6F3VYZT6A",
- "review_author_url": "https://www.amazon.com/gp/profile/amzn1.account.AF5SDGBY466LTYXQOZI6F3VYZT6A",
- "review_comment": "No noise at all! Very easy to assemble, and easy to clean. Just not that smart for sensing, only continuous water flow is great. But that’s fine for my cat he loves water flow. The price is a little bit too high",
- "review_date": "Reviewed in the United States on November 26, 2025",
- "review_id": "ROPNN1NYJEKQ5",
- "review_images": [],
- "review_link": "https://www.amazon.com/gp/customer-reviews/ROPNN1NYJEKQ5",
- "review_star_rating": "4",
- "review_title": "Great product, easy to clean",
- "review_video": null,
- "reviewed_product_asin": "B0CXHM344N",
- "reviewed_product_variant": {
- "Color": "White-Dishwasher Safe",
- "Size": "3L"
- }
- },
- {
- "helpful_vote_statement": "6 people found this helpful",
- "is_verified_purchase": true,
- "is_vine": false,
- "review_author": "Amazon Customer",
- "review_author_avatar": "https://m.media-amazon.com/images/S/amazon-avatars-global/default.png",
- "review_author_id": "AGVUV5YMYN5CHX65MUNJXNUSJ6CQ",
- "review_author_url": "https://www.amazon.com/gp/profile/amzn1.account.AGVUV5YMYN5CHX65MUNJXNUSJ6CQ",
- "review_comment": "This fountain is perfect for our cat! Too heavy for him to knock over or move easily but not too heavy to lift with it full. The design is great because there is no way for him to knock out the section wear the water pools. It locks in. It was super easy to put together & clean. It's super quiet! I have to check app or look close to see if it's working. We've not had any issues with it at all! Good quality parts.",
- "review_date": "Reviewed in the United States on November 14, 2025",
- "review_id": "R33OD211YANAXV",
- "review_images": [],
- "review_link": "https://www.amazon.com/gp/customer-reviews/R33OD211YANAXV",
- "review_star_rating": "5",
- "review_title": "Perfect",
- "review_video": null,
- "reviewed_product_asin": "B0CXHM344N",
- "reviewed_product_variant": {
- "Color": "White-Cordless",
- "Size": "3L"
- }
- }
- ]
- }
+ "*/*": {
+ "schema": {
+ "$ref": "#/components/schemas/Result"
}
}
},
- "description": "default response"
+ "description": "OK"
}
},
"summary": "Product Top Reviews",
"tags": [
"Amazon"
],
+ "x-api-version": "v1",
+ "x-highlights": [],
"x-order": "29001100"
}
},
@@ -1513,529 +456,23 @@
}
],
"responses": {
- "default": {
+ "200": {
"content": {
- "application/json": {
- "example": {
- "code": 0,
- "data": {
- "fb_query_id": "1083509521818865664",
- "has_more_data": 1,
- "list": [
- {
- "avg_unit_price": 170968,
- "building_finish_year": "1980",
- "building_type": "平房",
- "cardType": "CARD_TYPE_RESBLOCK_LIST",
- "city_id": 110000,
- "community_id": "1111027374023",
- "community_name": "顶银胡同",
- "cover_pic": "http://ke-image.ljcdn.com/hdic-resblock/aa6645df-c650-49b2-b7fa-9d1b8abeb8f4.jpg.280x210.jpg?from=ke.com",
- "description": "东城区/平房/1980年",
- "district_name": "东城区",
- "ershoufang_avg_unit_price": 170968,
- "ershoufang_source_count": 1,
- "fbExpoId": "1083509522544480256",
- "has_resblockVideo": 0,
- "has_resblock_panorama": 0,
- "has_strategy": false,
- "image": "http://ke-image.ljcdn.com/hdic-resblock/aa6645df-c650-49b2-b7fa-9d1b8abeb8f4.jpg.280x210.jpg?from=ke.com",
- "isFavorite": 0,
- "neo_desc": "在售1套/在租1套",
- "point_lat": 39.91743,
- "point_lng": 116.435449,
- "schema": "lianjiabeike://community/detailv4?communityid=1111027374023&fbExpoId=1083509522544480256&parentSceneId=393794904496948225",
- "strategy_info": "{\"fb_query_id\":\"1083509521818865664\",\"fb_expo_id\":\"1083509522544480256\",\"fb_item_location\":\"0\",\"fb_service_id\":\"1014710012_channel\",\"fb_ab_test_flag\":null,\"fb_item_id\":\"1111027374023\"}"
- },
- {
- "avg_unit_price": 130297,
- "building_finish_year": "1988",
- "building_type": "板楼",
- "cardType": "CARD_TYPE_RESBLOCK_LIST",
- "city_id": 110000,
- "community_id": "1111027373783",
- "community_name": "东门仓胡同甲3号院",
- "cover_pic": "http://ke-image.ljcdn.com/hdic-resblock/af53e3ec-6146-4a06-8d47-ed3ff2fdb35a.jpg.280x210.jpg?from=ke.com",
- "description": "东城区/板楼/1988年",
- "district_name": "东城区",
- "ershoufang_avg_unit_price": 130297,
- "ershoufang_source_count": 2,
- "fbExpoId": "1083509522544480257",
- "has_resblockVideo": 0,
- "has_resblock_panorama": 0,
- "has_strategy": false,
- "image": "http://ke-image.ljcdn.com/hdic-resblock/af53e3ec-6146-4a06-8d47-ed3ff2fdb35a.jpg.280x210.jpg?from=ke.com",
- "isFavorite": 0,
- "neo_desc": "在售2套",
- "point_lat": 39.937117,
- "point_lng": 116.438069,
- "schema": "lianjiabeike://community/detailv4?communityid=1111027373783&fbExpoId=1083509522544480257&parentSceneId=393794905196088065",
- "strategy_info": "{\"fb_query_id\":\"1083509521818865664\",\"fb_expo_id\":\"1083509522544480257\",\"fb_item_location\":\"1\",\"fb_service_id\":\"1014710012_channel\",\"fb_ab_test_flag\":null,\"fb_item_id\":\"1111027373783\"}"
- },
- {
- "avg_unit_price": 193056,
- "building_finish_year": "1949",
- "building_type": "平房",
- "cardType": "CARD_TYPE_RESBLOCK_LIST",
- "city_id": 110000,
- "community_id": "1111027373807",
- "community_name": "大齐家胡同",
- "cover_pic": "http://ke-image.ljcdn.com/materials/5a5f5ec5062e8593fc5566b3dbc11ad0773f8e1e.png.280x210.jpg?from=ke.com",
- "description": "西城区/平房/1949-1995年",
- "district_name": "西城区",
- "ershoufang_avg_unit_price": 193056,
- "ershoufang_source_count": 1,
- "fbExpoId": "1083509522544480258",
- "has_resblockVideo": 0,
- "has_resblock_panorama": 0,
- "has_strategy": false,
- "image": "http://ke-image.ljcdn.com/materials/5a5f5ec5062e8593fc5566b3dbc11ad0773f8e1e.png.280x210.jpg?from=ke.com",
- "isFavorite": 0,
- "neo_desc": "在售1套",
- "point_lat": 39.901512,
- "point_lng": 116.402892,
- "schema": "lianjiabeike://community/detailv4?communityid=1111027373807&fbExpoId=1083509522544480258&parentSceneId=393794905856736001",
- "strategy_info": "{\"fb_query_id\":\"1083509521818865664\",\"fb_expo_id\":\"1083509522544480258\",\"fb_item_location\":\"2\",\"fb_service_id\":\"1014710012_channel\",\"fb_ab_test_flag\":null,\"fb_item_id\":\"1111027373807\"}"
- },
- {
- "avg_unit_price": 85047,
- "building_finish_year": "2002",
- "building_type": "塔楼",
- "cardType": "CARD_TYPE_RESBLOCK_LIST",
- "city_id": 110000,
- "community_id": "1111027374013",
- "community_name": "丹耀大厦",
- "cover_pic": "http://ke-image.ljcdn.com/hdic-resblock/e36c8974-c823-432c-9606-2603bb74d7ea.jpg.280x210.jpg?from=ke.com",
- "description": "东城区/塔楼/2002-2006年",
- "district_name": "东城区",
- "ershoufang_avg_unit_price": 85047,
- "ershoufang_source_count": 3,
- "fbExpoId": "1083509522544480259",
- "has_resblockVideo": 0,
- "has_resblock_panorama": 0,
- "has_strategy": false,
- "image": "http://ke-image.ljcdn.com/hdic-resblock/e36c8974-c823-432c-9606-2603bb74d7ea.jpg.280x210.jpg?from=ke.com",
- "isFavorite": 0,
- "neo_desc": "在售3套/在租2套",
- "point_lat": 39.918832,
- "point_lng": 116.41818,
- "schema": "lianjiabeike://community/detailv4?communityid=1111027374013&fbExpoId=1083509522544480259&parentSceneId=393794906526049537",
- "strategy_info": "{\"fb_query_id\":\"1083509521818865664\",\"fb_expo_id\":\"1083509522544480259\",\"fb_item_location\":\"3\",\"fb_service_id\":\"1014710012_channel\",\"fb_ab_test_flag\":null,\"fb_item_id\":\"1111027374013\"}"
- },
- {
- "avg_unit_price": 95454,
- "building_finish_year": "1955",
- "building_type": "塔楼 板楼 塔板结合 平房",
- "cardType": "CARD_TYPE_RESBLOCK_LIST",
- "city_id": 110000,
- "community_id": "1111027373799",
- "community_name": "东南园",
- "cover_pic": "http://ke-image.ljcdn.com/hdic-resblock/cdf94490-69ef-4b04-a83f-2fcd29ae6cba.jpg.280x210.jpg?from=ke.com",
- "description": "西城区/塔楼 板楼 塔板结合 平房/1955-1991年",
- "district_name": "西城区",
- "ershoufang_avg_unit_price": 95454,
- "ershoufang_source_count": 5,
- "fbExpoId": "1083509522544480260",
- "has_resblockVideo": 0,
- "has_resblock_panorama": 0,
- "has_strategy": false,
- "image": "http://ke-image.ljcdn.com/hdic-resblock/cdf94490-69ef-4b04-a83f-2fcd29ae6cba.jpg.280x210.jpg?from=ke.com",
- "isFavorite": 0,
- "neo_desc": "在售5套/在租8套",
- "point_lat": 39.900536753329,
- "point_lng": 116.39328210369,
- "schema": "lianjiabeike://community/detailv4?communityid=1111027373799&fbExpoId=1083509522544480260&parentSceneId=393794907213400577",
- "strategy_info": "{\"fb_query_id\":\"1083509521818865664\",\"fb_expo_id\":\"1083509522544480260\",\"fb_item_location\":\"4\",\"fb_service_id\":\"1014710012_channel\",\"fb_ab_test_flag\":null,\"fb_item_id\":\"1111027373799\"}"
- },
- {
- "avg_unit_price": 118481,
- "building_finish_year": "1974",
- "building_type": "板楼 平房",
- "cardType": "CARD_TYPE_RESBLOCK_LIST",
- "city_id": 110000,
- "community_id": "1111027373750",
- "community_name": "大六部口",
- "cover_pic": "http://ke-image.ljcdn.com/hdic-resblock/671d6686-4590-4306-a4ac-463f5d4cc2e0.jpg.280x210.jpg?from=ke.com",
- "description": "西城区/板楼 平房/1974-1990年",
- "district_name": "西城区",
- "ershoufang_avg_unit_price": 118481,
- "ershoufang_source_count": 12,
- "fbExpoId": "1083509522544480261",
- "has_resblockVideo": 0,
- "has_resblock_panorama": 0,
- "has_strategy": false,
- "image": "http://ke-image.ljcdn.com/hdic-resblock/671d6686-4590-4306-a4ac-463f5d4cc2e0.jpg.280x210.jpg?from=ke.com",
- "isFavorite": 0,
- "neo_desc": "在售12套/在租5套",
- "point_lat": 39.912013,
- "point_lng": 116.387682,
- "schema": "lianjiabeike://community/detailv4?communityid=1111027373750&fbExpoId=1083509522544480261&parentSceneId=393794907797435393",
- "strategy_info": "{\"fb_query_id\":\"1083509521818865664\",\"fb_expo_id\":\"1083509522544480261\",\"fb_item_location\":\"5\",\"fb_service_id\":\"1014710012_channel\",\"fb_ab_test_flag\":null,\"fb_item_id\":\"1111027373750\"}"
- },
- {
- "avg_unit_price": 158650,
- "building_finish_year": "1980",
- "building_type": "塔楼",
- "cardType": "CARD_TYPE_RESBLOCK_LIST",
- "city_id": 110000,
- "community_id": "1111027374111",
- "community_name": "二龙路",
- "cover_pic": "http://ke-image.ljcdn.com/hdic-resblock/aa9f5eee-2928-46c4-9fbd-0e8095611df5.jpg.280x210.jpg?from=ke.com",
- "description": "西城区/塔楼/1980-1989年",
- "district_name": "西城区",
- "ershoufang_avg_unit_price": 158650,
- "ershoufang_source_count": 9,
- "fbExpoId": "1083509522544480262",
- "has_resblockVideo": 0,
- "has_resblock_panorama": 0,
- "has_strategy": false,
- "image": "http://ke-image.ljcdn.com/hdic-resblock/aa9f5eee-2928-46c4-9fbd-0e8095611df5.jpg.280x210.jpg?from=ke.com",
- "isFavorite": 0,
- "neo_desc": "在售9套/在租3套",
- "point_lat": 39.916216,
- "point_lng": 116.373416,
- "schema": "lianjiabeike://community/detailv4?communityid=1111027374111&fbExpoId=1083509522544480262&parentSceneId=393794908490599169",
- "strategy_info": "{\"fb_query_id\":\"1083509521818865664\",\"fb_expo_id\":\"1083509522544480262\",\"fb_item_location\":\"6\",\"fb_service_id\":\"1014710012_channel\",\"fb_ab_test_flag\":null,\"fb_item_id\":\"1111027374111\"}"
- },
- {
- "avg_unit_price": 67318,
- "building_finish_year": "1997",
- "building_type": "塔板结合",
- "cardType": "CARD_TYPE_RESBLOCK_LIST",
- "city_id": 110000,
- "community_id": "1111027374022",
- "community_name": "迪阳公寓",
- "cover_pic": "http://ke-image.ljcdn.com/hdic-resblock/de1c0d04-f896-4c95-b2dd-272628537ab8.JPG.280x210.jpg?from=ke.com",
- "description": "朝阳区/塔板结合/1997-1998年",
- "district_name": "朝阳区",
- "ershoufang_avg_unit_price": 67318,
- "ershoufang_source_count": 2,
- "fbExpoId": "1083509522544480263",
- "has_resblockVideo": 0,
- "has_resblock_panorama": 0,
- "has_strategy": false,
- "image": "http://ke-image.ljcdn.com/hdic-resblock/de1c0d04-f896-4c95-b2dd-272628537ab8.JPG.280x210.jpg?from=ke.com",
- "isFavorite": 0,
- "neo_desc": "在售2套/在租2套",
- "point_lat": 39.924463,
- "point_lng": 116.453017,
- "schema": "lianjiabeike://community/detailv4?communityid=1111027374022&fbExpoId=1083509522544480263&parentSceneId=393794909160121089",
- "strategy_info": "{\"fb_query_id\":\"1083509521818865664\",\"fb_expo_id\":\"1083509522544480263\",\"fb_item_location\":\"7\",\"fb_service_id\":\"1014710012_channel\",\"fb_ab_test_flag\":null,\"fb_item_id\":\"1111027374022\"}"
- },
- {
- "avg_unit_price": 135049,
- "building_finish_year": "1992",
- "building_type": "板楼 塔板结合",
- "cardType": "CARD_TYPE_RESBLOCK_LIST",
- "city_id": 110000,
- "community_id": "1111027374056",
- "community_name": "东总布胡同19号院",
- "cover_pic": "http://ke-image.ljcdn.com/hdic-resblock/8194dd4c-9758-4a75-a21a-0b288204caf7.jpg.280x210.jpg?from=ke.com",
- "description": "东城区/板楼 塔板结合/1992年",
- "district_name": "东城区",
- "ershoufang_avg_unit_price": 135049,
- "ershoufang_source_count": 2,
- "fbExpoId": "1083509522544480264",
- "has_resblockVideo": 0,
- "has_resblock_panorama": 0,
- "has_strategy": false,
- "image": "http://ke-image.ljcdn.com/hdic-resblock/8194dd4c-9758-4a75-a21a-0b288204caf7.jpg.280x210.jpg?from=ke.com",
- "isFavorite": 0,
- "neo_desc": "在售2套/在租1套",
- "point_lat": 39.918353,
- "point_lng": 116.438583,
- "schema": "lianjiabeike://community/detailv4?communityid=1111027374056&fbExpoId=1083509522544480264&parentSceneId=393794909765376257",
- "strategy_info": "{\"fb_query_id\":\"1083509521818865664\",\"fb_expo_id\":\"1083509522544480264\",\"fb_item_location\":\"8\",\"fb_service_id\":\"1014710012_channel\",\"fb_ab_test_flag\":null,\"fb_item_id\":\"1111027374056\"}"
- },
- {
- "avg_unit_price": 82724,
- "building_finish_year": "1990",
- "building_type": "板楼",
- "cardType": "CARD_TYPE_RESBLOCK_LIST",
- "city_id": 110000,
- "community_id": "1111027374152",
- "community_name": "阜成路14号院",
- "cover_pic": "http://ke-image.ljcdn.com/hdic-resblock/4e563622-1fd3-4787-9c75-9a6460ccf354.jpg.280x210.jpg?from=ke.com",
- "description": "海淀区/板楼/1990年",
- "district_name": "海淀区",
- "ershoufang_avg_unit_price": 82724,
- "ershoufang_source_count": 1,
- "fbExpoId": "1083509522544480265",
- "has_resblockVideo": 0,
- "has_resblock_panorama": 0,
- "has_strategy": false,
- "image": "http://ke-image.ljcdn.com/hdic-resblock/4e563622-1fd3-4787-9c75-9a6460ccf354.jpg.280x210.jpg?from=ke.com",
- "isFavorite": 0,
- "neo_desc": "在售1套/在租3套",
- "point_lat": 39.92851,
- "point_lng": 116.318858,
- "schema": "lianjiabeike://community/detailv4?communityid=1111027374152&fbExpoId=1083509522544480265&parentSceneId=393794910569952513",
- "strategy_info": "{\"fb_query_id\":\"1083509521818865664\",\"fb_expo_id\":\"1083509522544480265\",\"fb_item_location\":\"9\",\"fb_service_id\":\"1014710012_channel\",\"fb_ab_test_flag\":null,\"fb_item_id\":\"1111027374152\"}"
- },
- {
- "avg_unit_price": 0,
- "building_finish_year": "1950",
- "building_type": "板楼 平房",
- "cardType": "CARD_TYPE_RESBLOCK_LIST",
- "city_id": 110000,
- "community_id": "1111027374024",
- "community_name": "大院胡同",
- "cover_pic": "http://ke-image.ljcdn.com/materials/5a5f5ec5062e8593fc5566b3dbc11ad0773f8e1e.png.280x210.jpg?from=ke.com",
- "description": "西城区/板楼 平房/1950-2010年",
- "district_name": "西城区",
- "ershoufang_avg_unit_price": 0,
- "ershoufang_source_count": 1,
- "fbExpoId": "1083509522544480266",
- "has_resblockVideo": 0,
- "has_resblock_panorama": 0,
- "has_strategy": false,
- "image": "http://ke-image.ljcdn.com/materials/5a5f5ec5062e8593fc5566b3dbc11ad0773f8e1e.png.280x210.jpg?from=ke.com",
- "isFavorite": 0,
- "neo_desc": "在售1套",
- "point_lat": 39.926861,
- "point_lng": 116.378259,
- "schema": "lianjiabeike://community/detailv4?communityid=1111027374024&fbExpoId=1083509522544480266&parentSceneId=393794911220100353",
- "strategy_info": "{\"fb_query_id\":\"1083509521818865664\",\"fb_expo_id\":\"1083509522544480266\",\"fb_item_location\":\"10\",\"fb_service_id\":\"1014710012_channel\",\"fb_ab_test_flag\":null,\"fb_item_id\":\"1111027374024\"}"
- },
- {
- "avg_unit_price": 81690,
- "building_finish_year": "1980",
- "building_type": "板楼 平房",
- "cardType": "CARD_TYPE_RESBLOCK_LIST",
- "city_id": 110000,
- "community_id": "1111027374016",
- "community_name": "东营房八条",
- "cover_pic": "http://ke-image.ljcdn.com/hdic-resblock/1d2fd87c-ad05-4a31-a075-7175fdb3dd7d.jpg.280x210.jpg?from=ke.com",
- "description": "东城区/板楼 平房/1980-1995年",
- "district_name": "东城区",
- "ershoufang_avg_unit_price": 81690,
- "ershoufang_source_count": 2,
- "fbExpoId": "1083509522544480267",
- "has_resblockVideo": 0,
- "has_resblock_panorama": 0,
- "has_strategy": false,
- "image": "http://ke-image.ljcdn.com/hdic-resblock/1d2fd87c-ad05-4a31-a075-7175fdb3dd7d.jpg.280x210.jpg?from=ke.com",
- "isFavorite": 0,
- "neo_desc": "在售2套/在租2套",
- "point_lat": 39.936531,
- "point_lng": 116.446478,
- "schema": "lianjiabeike://community/detailv4?communityid=1111027374016&fbExpoId=1083509522544480267&parentSceneId=393794911839214849",
- "strategy_info": "{\"fb_query_id\":\"1083509521818865664\",\"fb_expo_id\":\"1083509522544480267\",\"fb_item_location\":\"11\",\"fb_service_id\":\"1014710012_channel\",\"fb_ab_test_flag\":null,\"fb_item_id\":\"1111027374016\"}"
- },
- {
- "avg_unit_price": 115540,
- "building_finish_year": "1980",
- "building_type": "板楼 平房",
- "cardType": "CARD_TYPE_RESBLOCK_LIST",
- "city_id": 110000,
- "community_id": "1111027373972",
- "community_name": "东斜街",
- "cover_pic": "http://ke-image.ljcdn.com/hdic-resblock/12568aaa-e197-44ca-947e-18d5291061a0.JPG.280x210.jpg?from=ke.com",
- "description": "西城区/板楼 平房/1980-1993年",
- "district_name": "西城区",
- "ershoufang_avg_unit_price": 115540,
- "ershoufang_source_count": 5,
- "fbExpoId": "1083509522544480268",
- "has_resblockVideo": 0,
- "has_resblock_panorama": 0,
- "has_strategy": false,
- "image": "http://ke-image.ljcdn.com/hdic-resblock/12568aaa-e197-44ca-947e-18d5291061a0.JPG.280x210.jpg?from=ke.com",
- "isFavorite": 0,
- "neo_desc": "在售5套/在租3套",
- "point_lat": 39.922083,
- "point_lng": 116.381853,
- "schema": "lianjiabeike://community/detailv4?communityid=1111027373972&fbExpoId=1083509522544480268&parentSceneId=393794912495703297",
- "strategy_info": "{\"fb_query_id\":\"1083509521818865664\",\"fb_expo_id\":\"1083509522544480268\",\"fb_item_location\":\"12\",\"fb_service_id\":\"1014710012_channel\",\"fb_ab_test_flag\":null,\"fb_item_id\":\"1111027373972\"}"
- },
- {
- "avg_unit_price": 78179,
- "building_finish_year": "1992",
- "building_type": "板楼",
- "cardType": "CARD_TYPE_RESBLOCK_LIST",
- "city_id": 110000,
- "community_id": "1111027374153",
- "community_name": "阜成路15号",
- "cover_pic": "http://ke-image.ljcdn.com/hdic-resblock/09c4da17-de38-46a7-96b6-8679e72d4117.jpg.280x210.jpg?from=ke.com",
- "description": "海淀区/板楼/1992年",
- "district_name": "海淀区",
- "ershoufang_avg_unit_price": 78179,
- "ershoufang_source_count": 1,
- "fbExpoId": "1083509522544480269",
- "has_resblockVideo": 0,
- "has_resblock_panorama": 0,
- "has_strategy": false,
- "image": "http://ke-image.ljcdn.com/hdic-resblock/09c4da17-de38-46a7-96b6-8679e72d4117.jpg.280x210.jpg?from=ke.com",
- "isFavorite": 0,
- "neo_desc": "在售1套/在租3套",
- "point_lat": 39.930527,
- "point_lng": 116.324814,
- "schema": "lianjiabeike://community/detailv4?communityid=1111027374153&fbExpoId=1083509522544480269&parentSceneId=393794913151001345",
- "strategy_info": "{\"fb_query_id\":\"1083509521818865664\",\"fb_expo_id\":\"1083509522544480269\",\"fb_item_location\":\"13\",\"fb_service_id\":\"1014710012_channel\",\"fb_ab_test_flag\":null,\"fb_item_id\":\"1111027374153\"}"
- },
- {
- "avg_unit_price": 91101,
- "building_finish_year": "1985",
- "building_type": "板楼 平房",
- "cardType": "CARD_TYPE_RESBLOCK_LIST",
- "city_id": 110000,
- "community_id": "1111027374156",
- "community_name": "阜成路47号院",
- "cover_pic": "http://ke-image.ljcdn.com/hdic-resblock/0bdb5d98-db42-4c66-a872-a2af4dc67dfa.jpg.280x210.jpg?from=ke.com",
- "description": "海淀区/板楼 平房/1985-2000年",
- "district_name": "海淀区",
- "ershoufang_avg_unit_price": 91101,
- "ershoufang_source_count": 1,
- "fbExpoId": "1083509522544480270",
- "has_resblockVideo": 0,
- "has_resblock_panorama": 0,
- "has_strategy": false,
- "image": "http://ke-image.ljcdn.com/hdic-resblock/0bdb5d98-db42-4c66-a872-a2af4dc67dfa.jpg.280x210.jpg?from=ke.com",
- "isFavorite": 0,
- "neo_desc": "在售1套/在租3套",
- "point_lat": 39.930589,
- "point_lng": 116.313284,
- "schema": "lianjiabeike://community/detailv4?communityid=1111027374156&fbExpoId=1083509522544480270&parentSceneId=393794913769203201",
- "strategy_info": "{\"fb_query_id\":\"1083509521818865664\",\"fb_expo_id\":\"1083509522544480270\",\"fb_item_location\":\"14\",\"fb_service_id\":\"1014710012_channel\",\"fb_ab_test_flag\":null,\"fb_item_id\":\"1111027374156\"}"
- },
- {
- "avg_unit_price": 88118,
- "building_finish_year": "1959",
- "building_type": "板楼",
- "cardType": "CARD_TYPE_RESBLOCK_LIST",
- "city_id": 110000,
- "community_id": "1111027374154",
- "community_name": "阜成路26号院",
- "cover_pic": "http://ke-image.ljcdn.com/hdic-resblock/c0151cbc-4173-43e6-91c4-88fcd68d229e.jpg.280x210.jpg?from=ke.com",
- "description": "海淀区/板楼/1959-1988年",
- "district_name": "海淀区",
- "ershoufang_avg_unit_price": 88118,
- "ershoufang_source_count": 1,
- "fbExpoId": "1083509522544480271",
- "has_resblockVideo": 0,
- "has_resblock_panorama": 0,
- "has_strategy": false,
- "image": "http://ke-image.ljcdn.com/hdic-resblock/c0151cbc-4173-43e6-91c4-88fcd68d229e.jpg.280x210.jpg?from=ke.com",
- "isFavorite": 0,
- "neo_desc": "在售1套/在租2套",
- "point_lat": 39.929344,
- "point_lng": 116.312678,
- "schema": "lianjiabeike://community/detailv4?communityid=1111027374154&fbExpoId=1083509522544480271&parentSceneId=393794914442598401",
- "strategy_info": "{\"fb_query_id\":\"1083509521818865664\",\"fb_expo_id\":\"1083509522544480271\",\"fb_item_location\":\"15\",\"fb_service_id\":\"1014710012_channel\",\"fb_ab_test_flag\":null,\"fb_item_id\":\"1111027374154\"}"
- },
- {
- "avg_unit_price": 81978,
- "building_finish_year": "1978",
- "building_type": "板楼 平房",
- "cardType": "CARD_TYPE_RESBLOCK_LIST",
- "city_id": 110000,
- "community_id": "1111027374019",
- "community_name": "东营房九条",
- "cover_pic": "http://ke-image.ljcdn.com/hdic-resblock/5bfbd47f-f038-46bd-9f47-1111fd46f58e.jpg.280x210.jpg?from=ke.com",
- "description": "东城区/板楼 平房/1978-1998年",
- "district_name": "东城区",
- "ershoufang_avg_unit_price": 81978,
- "ershoufang_source_count": 2,
- "fbExpoId": "1083509522544480272",
- "has_resblockVideo": 0,
- "has_resblock_panorama": 0,
- "has_strategy": false,
- "image": "http://ke-image.ljcdn.com/hdic-resblock/5bfbd47f-f038-46bd-9f47-1111fd46f58e.jpg.280x210.jpg?from=ke.com",
- "isFavorite": 0,
- "neo_desc": "在售2套/在租4套",
- "point_lat": 39.936104,
- "point_lng": 116.446305,
- "schema": "lianjiabeike://community/detailv4?communityid=1111027374019&fbExpoId=1083509522544480272&parentSceneId=393794915033216257",
- "strategy_info": "{\"fb_query_id\":\"1083509521818865664\",\"fb_expo_id\":\"1083509522544480272\",\"fb_item_location\":\"16\",\"fb_service_id\":\"1014710012_channel\",\"fb_ab_test_flag\":null,\"fb_item_id\":\"1111027374019\"}"
- },
- {
- "avg_unit_price": 101622,
- "building_finish_year": "1998",
- "building_type": "塔楼",
- "cardType": "CARD_TYPE_RESBLOCK_LIST",
- "city_id": 110000,
- "community_id": "1111027373753",
- "community_name": "大龙公寓",
- "cover_pic": "http://ke-image.ljcdn.com/hdic-resblock/e1d58a0c-b92f-403f-87fa-d2db24bf3cf4.jpg.280x210.jpg?from=ke.com",
- "description": "东城区/塔楼/1998-1999年",
- "district_name": "东城区",
- "ershoufang_avg_unit_price": 101622,
- "ershoufang_source_count": 5,
- "fbExpoId": "1083509522544480273",
- "has_resblockVideo": 0,
- "has_resblock_panorama": 0,
- "has_strategy": false,
- "image": "http://ke-image.ljcdn.com/hdic-resblock/e1d58a0c-b92f-403f-87fa-d2db24bf3cf4.jpg.280x210.jpg?from=ke.com",
- "isFavorite": 0,
- "neo_desc": "在售5套/在租1套",
- "point_lat": 39.969829,
- "point_lng": 116.419101,
- "schema": "lianjiabeike://community/detailv4?communityid=1111027373753&fbExpoId=1083509522544480273&parentSceneId=393794915631934209",
- "strategy_info": "{\"fb_query_id\":\"1083509521818865664\",\"fb_expo_id\":\"1083509522544480273\",\"fb_item_location\":\"17\",\"fb_service_id\":\"1014710012_channel\",\"fb_ab_test_flag\":null,\"fb_item_id\":\"1111027373753\"}"
- },
- {
- "avg_unit_price": 42481,
- "building_finish_year": "2002",
- "building_type": "塔楼",
- "cardType": "CARD_TYPE_RESBLOCK_LIST",
- "city_id": 110000,
- "community_id": "1111027373992",
- "community_name": "顶秀欣园西苑",
- "cover_pic": "http://ke-image.ljcdn.com/hdic-resblock/16fef218-2d8c-4a5d-a51c-90c9422611ba.jpg.280x210.jpg?from=ke.com",
- "description": "丰台区/塔楼/2002-2008年",
- "district_name": "丰台区",
- "ershoufang_avg_unit_price": 42481,
- "ershoufang_source_count": 12,
- "fbExpoId": "1083509522544480274",
- "has_resblockVideo": 0,
- "has_resblock_panorama": 0,
- "has_strategy": false,
- "image": "http://ke-image.ljcdn.com/hdic-resblock/16fef218-2d8c-4a5d-a51c-90c9422611ba.jpg.280x210.jpg?from=ke.com",
- "isFavorite": 0,
- "neo_desc": "在售12套/在租2套",
- "point_lat": 39.844885770193,
- "point_lng": 116.43384036878,
- "schema": "lianjiabeike://community/detailv4?communityid=1111027373992&fbExpoId=1083509522544480274&parentSceneId=393794916318830337",
- "strategy_info": "{\"fb_query_id\":\"1083509521818865664\",\"fb_expo_id\":\"1083509522544480274\",\"fb_item_location\":\"18\",\"fb_service_id\":\"1014710012_channel\",\"fb_ab_test_flag\":null,\"fb_item_id\":\"1111027373992\"}"
- },
- {
- "avg_unit_price": 81318,
- "building_finish_year": "1994",
- "building_type": "板楼",
- "cardType": "CARD_TYPE_RESBLOCK_LIST",
- "city_id": 110000,
- "community_id": "1111027374163",
- "community_name": "阜成路北三街5号院",
- "cover_pic": "http://ke-image.ljcdn.com/hdic-resblock/91a32eea-cf31-43b2-afc8-1559c69cadc5.jpg.280x210.jpg?from=ke.com",
- "description": "海淀区/板楼/1994年",
- "district_name": "海淀区",
- "ershoufang_avg_unit_price": 81318,
- "ershoufang_source_count": 3,
- "fbExpoId": "1083509522544480275",
- "has_resblockVideo": 0,
- "has_resblock_panorama": 0,
- "has_strategy": false,
- "image": "http://ke-image.ljcdn.com/hdic-resblock/91a32eea-cf31-43b2-afc8-1559c69cadc5.jpg.280x210.jpg?from=ke.com",
- "isFavorite": 0,
- "neo_desc": "在售3套/在租3套",
- "point_lat": 39.932922,
- "point_lng": 116.323023,
- "schema": "lianjiabeike://community/detailv4?communityid=1111027374163&fbExpoId=1083509522544480275&parentSceneId=393794917012076033",
- "strategy_info": "{\"fb_query_id\":\"1083509521818865664\",\"fb_expo_id\":\"1083509522544480275\",\"fb_item_location\":\"19\",\"fb_service_id\":\"1014710012_channel\",\"fb_ab_test_flag\":null,\"fb_item_id\":\"1111027374163\"}"
- }
- ],
- "needDemote": false,
- "total_count": 12716
- }
+ "*/*": {
+ "schema": {
+ "$ref": "#/components/schemas/Result"
}
}
},
- "description": "default response"
+ "description": "OK"
}
},
"summary": "Community List",
"tags": [
"Beike"
],
+ "x-api-version": "v1",
+ "x-highlights": [],
"x-order": "32001200"
}
},
@@ -2073,262 +510,23 @@
}
],
"responses": {
- "default": {
+ "200": {
"content": {
- "application/json": {
- "example": {
- "code": 0,
- "data": {
- "basicInfo": {
- "area": 63.4,
- "blueprintBedroomNum": 1,
- "blueprintHallNum": 1,
- "cityId": "110000",
- "communityId": "1111027379646",
- "communityName": "双裕花园西区",
- "floorState": "顶层/4层",
- "hasFramePoints": 0,
- "houseCode": "101127449675",
- "isFocus": false,
- "isOffSale": false,
- "mUrl": "https://m.ke.com/bj/ershoufang/101127449675.html",
- "orientation": "南",
- "price": 2350000,
- "title": "双裕花园西区 1室1厅 63.4平米",
- "unitPrice": 37067
- },
- "basicList": [
- {
- "name": "售价",
- "value": "235万"
- },
- {
- "name": "房型",
- "value": "1室1厅"
- },
- {
- "name": "建筑面积",
- "value": "63.4㎡"
- }
- ],
- "colorTags": [
- {
- "boldFont": 0,
- "color": "849AAE",
- "desc": "满五年"
- },
- {
- "boldFont": 0,
- "color": "849AAE",
- "desc": "随时可看"
- },
- {
- "boldFont": 0,
- "color": "849AAE",
- "desc": "房主自荐"
- }
- ],
- "declareInfo": {
- "actionUrl": "lianjiabeike://web/main?login=false&url=https%3A%2F%2Fm.ke.com%2Ftext%2Fdisclaimer",
- "icon": "https://img.ljcdn.com/beike/api/1595215420267.png",
- "title": "风险提示"
- },
- "hasFollowedPrice": 1,
- "hasLiveCard": true,
- "headPictures": [
- {
- "groupId": 2,
- "groupName": "户型",
- "imgObjectList": [
- {
- "groupId": 2,
- "groupName": "户型",
- "imgUrl": "http://ke-image.ljcdn.com/hdic-frame/standard_adc2f732-b0e3-4046-b580-06e34ccc1a75.png.1440x1080.jpg?from=ke.com"
- }
- ]
- }
- ],
- "houseKeys": {
- "actionUrl": "lianjiabeike://ershou/daikan?houseCode=101127449675&cityId=110000&requestFrom=0",
- "iconUrl": "http://ke-image.ljcdn.com/beike/1568101580073.png",
- "title": "钥匙房源 随时看房"
- },
- "infoJumpList": [
- {
- "actionUrl": "lianjiabeike://community/detailv4?communityid=1111027379646",
- "id": "xiaoqurukou",
- "name": "小区:",
- "value": "双裕花园西区 (顺义区-后沙峪)"
- },
- {
- "actionUrl": "lianjiabeike://ershou/detail/info?houseCode=101127449675&strategyInfo=&shareAgentUcid=",
- "id": "gengduofangyuanxinxi",
- "name": "其他:",
- "value": "梯户比 供暖方式"
- },
- {
- "actionUrl": "https://tax.jiaoyi.ke.com/sf/detail?cityCode=110000&houseCode=101127449675&taxStatus=0&source=beike&ots=1773065058000&cjj=2350000&sk=fbf885bd36ea57987a7549dcc233e89d",
- "clickName": "shoufurukou_succeed",
- "color": "3072F6",
- "id": "goufangyusuan",
- "monthlySupply": 9500,
- "name": "首付:",
- "sfTotal": 45,
- "value": "净首付(不含税)45万,月供9500元"
- }
- ],
- "infoList": [
- {
- "name": "单价:",
- "value": "37067元/平"
- },
- {
- "name": "挂牌:",
- "value": "2024.11.05"
- },
- {
- "name": "朝向:",
- "value": "南"
- },
- {
- "name": "楼层:",
- "value": "顶层(共4层)"
- },
- {
- "name": "楼型:",
- "value": "板楼"
- },
- {
- "name": "电梯:",
- "value": "无"
- },
- {
- "name": "装修:",
- "value": "精装"
- },
- {
- "alertText": "根据本栋部分房源产权证中《房屋登记表》上的测图日期统计生成,可能本栋不同房源之间存在差异,仅供参考。",
- "name": "年代:",
- "value": "2003年建成"
- },
- {
- "name": "用途:",
- "value": "普通住宅"
- },
- {
- "name": "权属:",
- "value": "商品房"
- }
- ],
- "isDefault": false,
- "isVr": false,
- "isVrAndLiveCardBottom": 0,
- "miniProgram": {
- "accessKey": "gh_2dbd87cb164c",
- "path": "subpackages/ershoufang/pages/esfDetail/esfDetail?cityId=110000&houseCode=101127449675&share_user_id=0&share_device_union_id=&share_user_type=2&share_time=1773065058267&source=share_beikeapp&from=shell&share=true&share_entity_union_id=9bc3e7520cbecc195593a75de78a9ba4&share_id=33f06867fb5e7bdb3ccd8b6de115f13d"
- },
- "nav": [
- {
- "key": "basicInfo",
- "name": "房源"
- }
- ],
- "share": {
- "showAgent": true,
- "showCircle": true,
- "showMsg": true,
- "showWeixin": true
- },
- "styleSet": {
- "basicItemSize": 16,
- "basicTitleColor": "FA5741",
- "jumpItemColor": "3072F6",
- "jumpItemSize": 16,
- "navigateWordColor": "3072F6",
- "sectionTitleSize": 20,
- "stressColor": "FA5741",
- "styleName": "normal",
- "titleSize": 22
- },
- "textFormatDownPrice": {
- "color": "3072F6",
- "itemKey": "textFormatDownPrice",
- "textEnd": "电话讲解",
- "textHead": "专属经纪人"
- },
- "userRelated": {
- "isAddCart": 0,
- "isFollowed": 0,
- "isFollowedPrice": 0
- },
- "verificationInfo": {
- "agentName": "张忠良",
- "agentUcid": "1000000010081720",
- "certificateInfo": [
- {
- "icon": "http://ke-image.ljcdn.com/beike/1545043505977.png",
- "list": [
- {
- "name": "从业人员工作牌",
- "path": "https://img.ljcdn.com/ehr-personnel/202004111008285365UW0QVPQ.jpg"
- },
- {
- "certCode": "30620191011100002734",
- "jumpContent": "持有全国房地产经纪人协理职业资格证。\r\n由中国房地产估价师与房地产经纪人学会颁发人力资源社会保障部、住房城乡建设部监制,中国房地产估价师与房地产经纪人学会用印的相应级别《中华人民共和国房地产经纪专业人员职业资格证书》在全国范围有效。",
- "name": "全国房地产经纪人协理证",
- "path": "https://image1.ljcdn.com/ehr-personnel/20190108180804890B5IW0ZJU.png"
- },
- {
- "name": "费率",
- "path": "https://img.ljcdn.com/ehr-personnel/a810ff7a-e7f0-42fc-a508-96f51c6f94b0.jpg"
- }
- ],
- "title": "房源发布人"
- },
- {
- "icon": "http://ke-image.ljcdn.com/beike/1545043505977.png",
- "list": [
- {
- "jumpContent": "企业信用信息查询网址:http://www.gsxt.gov.cn/index.html",
- "name": "营业执照",
- "path": "https://img.ljcdn.com/ehr-personnel/20240813183721981NR3TQWSP.jpg"
- },
- {
- "name": "经纪备案",
- "path": "https://img.ljcdn.com/ehr-personnel/20240507173107450KNIGTHDT.jpg"
- }
- ],
- "title": "房源发布机构"
- }
- ],
- "digV": "{\"u\":1000000010081720,\"v\":\"V1\",\"s\":\"NATURAL\",\"adId\":100011429,\"flow\":\"natural\",\"b\":\"HouseHolderAgentBuilder\",\"p\":\"\",\"g\":\"\",\"sid\":\"1000000010081720_1111027379646\",\"rid\":\"8124032703957783648\"}",
- "title": "房源维护人"
- },
- "vrAndLiveCard": [
- {
- "buttonColor": "ED423B",
- "buttonTitle": "立即观看",
- "coverColor": "0DFE615A",
- "iconUrl": "https://img.ljcdn.com/beike/arsenal/1631786157239.gif",
- "statisticsText": "本市直播",
- "strokeColor": "FE615A",
- "subTitle": "随时随地 想看就看",
- "title": "直播看房",
- "type": "live",
- "url": "lianjiabeike://web/main?login=false&url=https%3A%2F%2Ffang-trade.ke.com%2FliveRoom%2FchannelV2%3FcityId%3D110000%26tagId%3DentityType2"
- }
- ]
- }
+ "*/*": {
+ "schema": {
+ "$ref": "#/components/schemas/Result"
}
}
},
- "description": "default response"
+ "description": "OK"
}
},
"summary": "Resale Housing Details",
"tags": [
"Beike"
],
+ "x-api-version": "v1",
+ "x-highlights": [],
"x-order": "32001000"
}
},
@@ -2378,258 +576,23 @@
}
],
"responses": {
- "default": {
+ "200": {
"content": {
- "application/json": {
- "example": {
- "code": 0,
- "data": {
- "cost": 58,
- "data": {
- "hasMoreData": 0,
- "headerList": [
- {
- "filters": {
- "checkFilters": {
- "area": {
- "alias": "a",
- "itemType": "house_area",
- "name": "建筑面积",
- "options": [
- {
- "id": 1,
- "key": "a1",
- "left": 0,
- "name": "50㎡以下",
- "right": 50
- }
- ],
- "range": {
- "max": {
- "key": "ea",
- "name": "最大"
- },
- "min": {
- "key": "ba",
- "name": "最小"
- },
- "name": "自定义建筑面积",
- "rangeUnit": {
- "default": "㎡",
- "less": "㎡以下",
- "more": "㎡以上"
- },
- "slide": {
- "length": 200,
- "maxText": "200㎡以上",
- "minText": "0㎡",
- "step": 5
- }
- },
- "type": 1
- },
- "more": {
- "name": "更多",
- "options": [
- {
- "alias": "a",
- "itemType": "house_area",
- "name": "建筑面积",
- "options": [
- {
- "id": 1,
- "key": "a1",
- "left": 0,
- "name": "50㎡以下",
- "right": 50
- }
- ],
- "range": {
- "max": {
- "key": "ea",
- "name": "最大"
- },
- "min": {
- "key": "ba",
- "name": "最小"
- },
- "name": "自定义建筑面积",
- "rangeUnit": {
- "default": "㎡",
- "less": "㎡以下",
- "more": "㎡以上"
- },
- "slide": {
- "length": 200,
- "maxText": "200㎡以上",
- "minText": "0㎡",
- "step": 5
- }
- },
- "type": 1
- }
- ],
- "type": 1
- },
- "price": {
- "alias": "p",
- "itemType": "totalPrice",
- "name": "价格",
- "options": [
- {
- "id": 1,
- "key": "p1",
- "left": 0,
- "name": "200万以下",
- "right": 2000000
- }
- ],
- "range": {
- "max": {
- "key": "ep",
- "name": "最高总价"
- },
- "min": {
- "key": "bp",
- "name": "最低总价"
- },
- "name": "自定义价格",
- "rangeUnit": {
- "default": "万",
- "less": "万以下",
- "more": "万以上"
- },
- "rangeUnitLow": {
- "default": "元",
- "less": "元以下",
- "more": "元以上"
- },
- "slide": {
- "length": 10000000,
- "maxText": "1000万以上",
- "minText": "0元",
- "step": 100000
- }
- },
- "type": 1
- },
- "region": {
- "name": "区域",
- "options": [
- {
- "alias": "d",
- "itemType": "district",
- "name": "区域",
- "options": [
- {
- "name": "不限",
- "options": [
- {
- "name": "不限"
- }
- ],
- "type": 0
- }
- ],
- "type": 0
- }
- ],
- "type": 0
- },
- "room": {
- "alias": "l",
- "itemType": "room_count",
- "name": "房型",
- "options": [
- {
- "id": 1,
- "key": "l1",
- "name": "一室"
- }
- ],
- "type": 1
- },
- "soldMore": {
- "name": "建筑面积",
- "options": [
- {
- "alias": "a",
- "itemType": "house_area",
- "name": "建筑面积",
- "options": [
- {
- "id": 1,
- "key": "a1",
- "left": 0,
- "name": "50㎡以下",
- "right": 50
- }
- ],
- "range": {
- "max": {
- "key": "ea",
- "name": "最大"
- },
- "min": {
- "key": "ba",
- "name": "最小"
- },
- "name": "自定义建筑面积",
- "rangeUnit": {
- "default": "㎡",
- "less": "㎡以下",
- "more": "㎡以上"
- },
- "slide": {
- "length": 200,
- "maxText": "200㎡以上",
- "minText": "0㎡",
- "step": 5
- }
- },
- "type": 1
- }
- ],
- "type": 1
- }
- },
- "listFilters": [
- {
- "id": 1,
- "key": "mw1",
- "name": "满五年"
- }
- ],
- "sortFilters": [
- {
- "name": "默认排序"
- }
- ]
- },
- "itemKey": "filters"
- }
- ],
- "houseTooFew": 0,
- "noResultNearHouse": 0,
- "returnCount": 0,
- "subscribe": 0,
- "totalCount": 0
- },
- "errno": 0,
- "error": "",
- "request_id": "dd9a1e0e-1bc0-11f1-8335-ba5e53120619",
- "uniqid": "1055-5AE4-9BAD-7E42-6B9B97F1E7C3"
- }
+ "*/*": {
+ "schema": {
+ "$ref": "#/components/schemas/Result"
}
}
},
- "description": "default response"
+ "description": "OK"
}
},
"summary": "Resale Housing List",
"tags": [
"Beike"
],
+ "x-api-version": "v1",
+ "x-highlights": [],
"x-order": "32001100"
}
},
@@ -2658,566 +621,23 @@
}
],
"responses": {
- "default": {
+ "200": {
"content": {
- "application/json": {
- "example": {
- "code": 0,
- "data": {
- "channel": {
- "channelConfig": [],
- "channelData": {},
- "serverFetched": null
- },
- "common": {
- "abtest": {
- "h5_recommend_trend": "1"
- },
- "browser": {
- "CMDC": false,
- "MicroMessenger": false,
- "QQLive": false,
- "Safari": false,
- "Youku": false,
- "android": true,
- "baidu": true,
- "baiduspider": false,
- "chrome": false,
- "harmonyOSNext": false,
- "iPad": false,
- "iPhone": false,
- "ios": false,
- "iqiyi": false,
- "mbaidu": true,
- "mobile": true,
- "mqq": false,
- "oppoBrowser": false,
- "qq": false,
- "quark": false,
- "uc": false,
- "webApp": false,
- "wechat": false,
- "weibo": false,
- "windowsphone": false,
- "wxwork": false,
- "xiaomiqjs": false,
- "zhihu": false
- },
- "defDomain": "",
- "isWxTagLaunch": false,
- "noCallApp": false,
- "serverConfig": {
- "constants": {
- "newClipboard": false
- },
- "customChannel": {
- "bsource": [
- "OPPO_search",
- "vendor_vivo_widget_search"
- ]
- },
- "limitChannel": {
- "bsource": [
- "bilibili-toutiao",
- "search_google",
- "bddj"
- ],
- "referrer": [
- "(.)*\\.google.com"
- ],
- "ua": [
- "MicroMessenger",
- "wxwork",
- "Weibo",
- "qzone/.*_qz_([\\d.]+)",
- "QQ/([\\d\\.]+)",
- "NewsArticle",
- "GoldBrowser",
- "WukongSearch",
- "wksearch",
- "SKLand",
- "Googlebot"
- ]
- },
- "switch": {
- "search_h5_style": "column1"
- }
- },
- "switch": {
- "search_h5_style": "column1"
- },
- "ua": "Mozilla/5.0 (Linux; Android 10; CLT-AL00 Build/HUAWEICLT-AL00; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/76.0.3809.89 Mobile Safari/537.36 T7/11.20 SP-engine/2.16.0 baiduboxapp/11.20.0.14 (Baidu; P1 10) NABar/1.0",
- "userInfo": {
- "face": "",
- "isLogin": false,
- "vipStatus": 0,
- "vipType": 0
- }
- },
- "home": {
- "hotList": {
- "error": false,
- "extra": {},
- "noMore": false,
- "result": []
- }
- },
- "opus": {
- "detail": null,
- "fallback": {
- "id": "",
- "type": 0
- },
- "id": "",
- "isClient": false,
- "isTab3": false,
- "preview": null,
- "uniqueK": "",
- "verifyData": null
- },
- "playlist": {
- "forbidPreview": false,
- "hasMore": true,
- "isClient": false,
- "mediaData": {
- "mediaList": [],
- "noMore": false,
- "pn": 1,
- "ps": 20
- },
- "mediaId": "",
- "mediaList": [],
- "p": 1,
- "playEnd": false,
- "playMode": "order",
- "playSum": 0,
- "playUrl": [],
- "playlistType": 3,
- "ps": 20,
- "randomList": [],
- "tid": 0,
- "videoIndex": 0,
- "videoInfo": {}
- },
- "route": {
- "from": {
- "fullPath": "/",
- "hash": "",
- "meta": {},
- "name": null,
- "params": {},
- "path": "/",
- "query": {}
- },
- "fullPath": "/space/472747194",
- "hash": "",
- "meta": {},
- "name": "space",
- "params": {
- "id": "472747194"
- },
- "path": "/space/472747194",
- "query": {}
- },
- "search": {
- "bsource": "",
- "isCustom": false,
- "keyword": "",
- "openAppDialog": true,
- "searchAllResult": {
- "click": {
- "noMore": false,
- "page": 0,
- "result": [],
- "total": 0
- },
- "dm": {
- "noMore": false,
- "page": 0,
- "result": [],
- "total": 0
- },
- "extra": {
- "count": {
- "bili_user": 0,
- "media_bangumi": 0,
- "media_ft": 0,
- "video": 0
- },
- "filmList": [],
- "pgcList": []
- },
- "pubdate": {
- "noMore": false,
- "page": 0,
- "result": [],
- "total": 0
- },
- "totalrank": {
- "noMore": false,
- "page": 0,
- "result": [],
- "total": 0
- }
- },
- "searchBangumiResult": {
- "noMore": false,
- "page": 0,
- "result": [],
- "total": 0
- },
- "searchFilmResult": {
- "noMore": false,
- "page": 0,
- "result": [],
- "total": 0
- },
- "searchUserResult": {
- "noMore": false,
- "page": 0,
- "result": [],
- "total": 0
- }
- },
- "space": {
- "feedList": {
- "error": false,
- "extra": {},
- "noMore": false,
- "result": []
- },
- "info": {
- "attestation": {
- "common_info": {
- "prefix": "bilibili UP主认证",
- "prefix_title": "bilibili UP主认证:bilibili 知名UP主",
- "title": "bilibili 知名UP主"
- },
- "desc": "",
- "icon": "https://i0.hdslb.com/bfs/activity-plat/static/20230828/e3b8ebec8e86f060b930a2c0536bb88b/72wejSxl9Z.png",
- "splice_info": {
- "title": "bilibili 知名UP主"
- },
- "type": 2
- },
- "birthday": "01-22",
- "certificate_show": false,
- "coins": 0,
- "contract": null,
- "control": 0,
- "elec": {
- "show_info": {
- "icon": "https://i0.hdslb.com/bfs/garb/item/33e2e72d9a0c855f036b4cb55448f44af67a0635.png",
- "jump_url": "https://www.bilibili.com/h5/upower/index?mid=472747194&navhide=1&oid=472747194",
- "jump_url_web": "https://member.bilibili.com/mall/upower-pay?mid=472747194",
- "list": [
- {
- "avatar": "https://i0.hdslb.com/bfs/face/1050e369495e476333d73c83371a894a9b12ce75.jpg",
- "pay_mid": 362793762,
- "rank": 1,
- "uname": "cathiegao"
- },
- {
- "avatar": "https://i1.hdslb.com/bfs/face/c1de1ed35d0b19b355fec5a3c7177fbbcd17f801.jpg",
- "pay_mid": 279173605,
- "rank": 2,
- "uname": "小石头21126"
- },
- {
- "avatar": "https://i2.hdslb.com/bfs/face/6d9ef0098bb5d8448af88be78a32465264c44b69.jpg",
- "pay_mid": 210411350,
- "rank": 3,
- "uname": "東青先生"
- },
- {
- "avatar": "https://i0.hdslb.com/bfs/face/edde8ef9e029c298dc2fad663ef948b20ef2d489.jpg",
- "pay_mid": 10302270,
- "rank": 4,
- "uname": "JosephZ8901"
- },
- {
- "avatar": "https://i0.hdslb.com/bfs/face/member/noface.jpg",
- "pay_mid": 494571761,
- "rank": 5,
- "uname": "小羊角ge"
- },
- {
- "avatar": "http://i0.hdslb.com/bfs/face/member/noface.jpg",
- "pay_mid": 18757174,
- "rank": 6,
- "uname": "热呢俄"
- },
- {
- "avatar": "https://i0.hdslb.com/bfs/face/fe639d57dccc65fade152617fc31fb92dc184433.jpg",
- "pay_mid": 324177027,
- "rank": 7,
- "uname": "doidi"
- },
- {
- "avatar": "https://i0.hdslb.com/bfs/face/3f6bece9bf66560792f0fa5ca2f5d1d8a7c65b24.jpg",
- "pay_mid": 1389275292,
- "rank": 8,
- "uname": "云の生活"
- },
- {
- "avatar": "http://i0.hdslb.com/bfs/face/f22001df5c14b29565c82a460533f26f53ceb34f.jpg",
- "pay_mid": 18163644,
- "rank": 9,
- "uname": "工藤凉平"
- },
- {
- "avatar": "https://i0.hdslb.com/bfs/face/member/noface.jpg",
- "pay_mid": 521534,
- "rank": 10,
- "uname": "boroboro"
- },
- {
- "avatar": "https://i0.hdslb.com/bfs/face/cd3eb173a3b87c1c3b44e045bef1b5e9e3a5d8f9.jpg",
- "pay_mid": 2141299866,
- "rank": 11,
- "uname": "笋哲"
- }
- ],
- "long_title": "",
- "show": true,
- "state": 2,
- "title": "充电",
- "total": 7697,
- "upower_count_show": true
- }
- },
- "face": "https://i0.hdslb.com/bfs/face/c518dc95663850d075a90897de617cc634151f7a.jpg",
- "face_nft": 0,
- "face_nft_type": 0,
- "fans_badge": true,
- "fans_medal": {
- "detail": null,
- "medal": null,
- "show": false,
- "wear": false
- },
- "gaia_data": null,
- "gaia_res_type": 0,
- "is_followed": false,
- "is_risk": false,
- "is_senior_member": 0,
- "jointime": 0,
- "level": 6,
- "live_room": null,
- "mcn_info": null,
- "mid": 472747194,
- "moral": 0,
- "name": "巫师财经",
- "name_render": null,
- "nameplate": {
- "condition": "",
- "image": "",
- "image_small": "",
- "level": "",
- "name": "",
- "nid": 0
- },
- "official": {
- "desc": "",
- "role": 1,
- "title": "bilibili 知名UP主",
- "type": 0
- },
- "pendant": {
- "expire": 0,
- "image": "",
- "image_enhance": "",
- "image_enhance_frame": "",
- "n_pid": 0,
- "name": "",
- "pid": 0
- },
- "profession": {
- "department": "",
- "is_show": 0,
- "name": "",
- "title": ""
- },
- "rank": 10000,
- "school": null,
- "series": {
- "show_upgrade_window": false,
- "user_upgrade_status": 3
- },
- "sex": "男",
- "sign": "前中金分析师,合作:nef_mk,文字和图表都发在公众号了,自取随便用,就说是你写的",
- "silence": 0,
- "sys_notice": {},
- "tags": [
- "资本永不眠"
- ],
- "theme": null,
- "top_photo": "bfs/space/cd52d4ac1d336c940cc4958120170f7928d9e606.png",
- "top_photo_v2": {
- "l_200h_img": "https://i0.hdslb.com/bfs/activity-plat/static/0977767b2e79d8ad0a36a731068a83d7/uL5vWnvU3i.png",
- "l_img": "https://i0.hdslb.com/bfs/space/cd52d4ac1d336c940cc4958120170f7928d9e606.png",
- "sid": 9
- },
- "user_honour_info": {
- "colour": null,
- "is_latest_100honour": 0,
- "mid": 0,
- "tags": []
- },
- "vip": {
- "avatar_icon": {
- "icon_resource": {}
- },
- "avatar_subscript": 0,
- "avatar_subscript_url": "",
- "due_date": 1702051200000,
- "label": {
- "bg_color": "",
- "bg_style": 0,
- "border_color": "",
- "img_label_uri_hans": "",
- "img_label_uri_hans_static": "https://i0.hdslb.com/bfs/vip/d7b702ef65a976b20ed854cbd04cb9e27341bb79.png",
- "img_label_uri_hant": "",
- "img_label_uri_hant_static": "https://i0.hdslb.com/bfs/activity-plat/static/20220614/e369244d0b14644f5e1a06431e22a4d5/KJunwh19T5.png",
- "label_goto": null,
- "label_id": 0,
- "label_theme": "",
- "path": "",
- "text": "",
- "text_color": "",
- "use_img_label": true
- },
- "nickname_color": "",
- "ott_info": {
- "overdue_time": 0,
- "pay_channel_id": "",
- "pay_type": 0,
- "status": 0,
- "vip_type": 0
- },
- "role": 0,
- "status": 0,
- "super_vip": {
- "is_super_vip": false
- },
- "theme_type": 0,
- "tv_due_date": 0,
- "tv_vip_pay_type": 0,
- "tv_vip_status": 0,
- "type": 1,
- "vip_pay_type": 0
- }
- },
- "mid": 472747194
- },
- "tag": {
- "tagInfo": {},
- "tagRelated": {
- "error": false,
- "extra": {},
- "result": [],
- "total": 0
- },
- "tagSimilar": []
- },
- "topic": {
- "activities": {},
- "ads": {},
- "headerTextColor": 0,
- "isExpanded": false,
- "relevantTopics": [],
- "topicDetail": {},
- "topicId": 0,
- "topicListResult": {
- "error": false,
- "extra": {},
- "no_more": false,
- "result": [],
- "total": 0
- }
- },
- "tribee": {
- "tribeeBaseInfo": {},
- "tribeeInviteDefer": null,
- "tribeeInviteInfo": null,
- "tribeeList": [],
- "tribeeListTotal": 0,
- "tribeeSteamHomeInfo": {}
- },
- "video": {
- "archiveConfigId": "",
- "archiveType": 0,
- "avid": 0,
- "breadcrumb": {},
- "bsource": "",
- "bvid": "",
- "elec": {},
- "error": 0,
- "eventConfig": {
- "bottomBannerImage": "",
- "bottomBannerUrl": {
- "searchKeyword": "",
- "type": "browser",
- "urlH5": ""
- },
- "mainCallButtonText": "",
- "relatedTabList": [],
- "relatedTabText": {
- "text": "",
- "videoListID": ""
- },
- "topBannerImage": "",
- "topButtonUrl": {
- "searchKeyword": "",
- "type": "browser",
- "urlH5": ""
- },
- "topSearchUrl": {
- "searchKeyword": "",
- "type": "browser",
- "urlH5": ""
- }
- },
- "gameMode": false,
- "hotSearchVideoList": [],
- "hotWord": "",
- "isClient": false,
- "isCustom": false,
- "isRelatedUp": false,
- "isSem": false,
- "isTab3": false,
- "keyword": "",
- "p": 0,
- "pageType": "share",
- "playState": "init",
- "playUrlInfo": {},
- "playerSettings": {},
- "quality": {},
- "related": {
- "error": false,
- "extra": {},
- "noMore": false,
- "result": []
- },
- "reportMsg": {},
- "tags": [],
- "togglePlay": true,
- "trackId": "",
- "upInfo": {},
- "videoPageSettings": {},
- "viewInfo": {}
- }
- }
+ "*/*": {
+ "schema": {
+ "$ref": "#/components/schemas/Result"
}
}
},
- "description": "default response"
+ "description": "OK"
}
},
"summary": "User Profile",
"tags": [
"Bilibili"
],
+ "x-api-version": "v2",
+ "x-highlights": [],
"x-order": 18001200
}
},
@@ -3246,42 +666,30 @@
}
],
"responses": {
- "default": {
+ "200": {
"content": {
- "application/json": {
- "example": {
- "code": 0,
- "data": {
- "code": 0,
- "data": {
- "black": 0,
- "fans_effect": null,
- "fans_medal_toast": null,
- "follower": 4153991,
- "following": 11,
- "mid": 472747194,
- "whisper": 0
- },
- "message": "0",
- "ttl": 1
- }
+ "*/*": {
+ "schema": {
+ "$ref": "#/components/schemas/Result"
}
}
},
- "description": "default response"
+ "description": "OK"
}
},
"summary": "User Relation Stats",
"tags": [
"Bilibili"
],
+ "x-api-version": "v1",
+ "x-highlights": [],
"x-order": 18001700
}
},
"/api/bilibili/get-user-video-list/v2": {
"get": {
"description": "Get Bilibili user Published Videos data, including titles, covers, and publish times, for creator monitoring and content performance analysis.",
- "operationId": "getUserVideoListV2",
+ "operationId": "getBilibiliUserVideoListV2",
"parameters": [
{
"description": "Access token for the API.",
@@ -3312,99 +720,23 @@
}
],
"responses": {
- "default": {
+ "200": {
"content": {
- "application/json": {
- "example": {
- "code": 0,
- "data": {
- "code": 0,
- "data": {
- "count": 91,
- "episodic_button": {
- "text": "播放全部",
- "uri": "bilibili://music/playlist/spacepage/472747194?desc=1&offset=0&oid=0&order=time&page_type=1&playlist_..."
- },
- "has_next": true,
- "has_prev": false,
- "item": [
- {
- "author": "巫师财经",
- "bvid": "BV1CYPCzWEi4",
- "cover": "http://i0.hdslb.com/bfs/archive/ee2702eb7b94310391bc0a71a4112ece2f35ffe5.jpg",
- "cover_icon": "",
- "cover_left_icon": "",
- "cover_left_text": "",
- "ctime": 1772707693,
- "cursor_attr": {
- "is_last_watched_arc": false,
- "rank": 0
- },
- "danmaku": 705,
- "duration": 474,
- "first_cid": 36474193273,
- "goto": "av",
- "icon_type": 0,
- "is_cooperation": false,
- "is_fold": false,
- "is_live_playback": false,
- "is_oneself": false,
- "is_pgc": false,
- "is_popular": false,
- "is_pugv": false,
- "is_steins": false,
- "is_ugcpay": false,
- "length": "",
- "param": "116176164232467",
- "play": 480257,
- "publish_time_text": "3月5日",
- "state": false,
- "sub_title_icon": "",
- "subtitle": "",
- "three_point": [
- {
- "icon": "https://i0.hdslb.com/bfs/activity-plat/static/0X5s0d3xaY.png",
- "text": "添加至稍后再看",
- "translate": null,
- "type": "addtoview"
- }
- ],
- "title": "【巫师】美国干伊朗02,藏着对我们的资本阴招儿",
- "tname": "财经商业",
- "translate_status": "",
- "translated_title": "",
- "ugc_pay": 0,
- "uri": "bilibili://video/116176164232467?cid=36474193273&history_progress=0&player_height=1080&player_preloa...",
- "videos": 1,
- "view_content": "48万",
- "view_self_type": 0
- }
- ],
- "last_watched_locator": {
- "display_threshold": 10,
- "insert_ranking": 6,
- "text": "定位至上次观看"
- },
- "order": [
- {
- "title": "最新发布",
- "value": "pubdate"
- }
- ]
- },
- "message": "OK",
- "ttl": 1
- }
+ "*/*": {
+ "schema": {
+ "$ref": "#/components/schemas/Result"
}
}
},
- "description": "default response"
+ "description": "OK"
}
},
"summary": "User Published Videos",
"tags": [
"Bilibili"
],
+ "x-api-version": "v2",
+ "x-highlights": [],
"x-order": 18001100
}
},
@@ -3451,30 +783,23 @@
}
],
"responses": {
- "default": {
+ "200": {
"content": {
- "application/json": {
- "example": {
- "code": 0,
- "data": {
- "data": [
- {
- "lan": "ai-zh",
- "lan_doc": "中文",
- "subtitle_url": "https://aisubtitle.hdslb.com/bfs/ai_subtitle/prod/1161872036335613652380289389567a35f54a55f3331d17dc34585b74?auth_key=1773067917-2d78a220e5ca414ba1f5811d5055bd1e-0-22633ffb1752edeb99744c0f28150a7c"
- }
- ]
- }
+ "*/*": {
+ "schema": {
+ "$ref": "#/components/schemas/Result"
}
}
},
- "description": "default response"
+ "description": "OK"
}
},
"summary": "Video Captions",
"tags": [
"Bilibili"
],
+ "x-api-version": "v2",
+ "x-highlights": [],
"x-order": 18001800
}
},
@@ -3512,917 +837,23 @@
}
],
"responses": {
- "default": {
+ "200": {
"content": {
- "application/json": {
- "example": {
- "code": 0,
- "data": {
- "code": 0,
- "data": {
- "assist": 0,
- "blacklist": 0,
- "callbacks": {},
- "cm_info": {
- "ads": {
- "4765": [
- {
- "activity_type": 0,
- "ad_cb": "",
- "ad_desc": "",
- "adver_name": "",
- "agency": "",
- "area": 0,
- "cm_mark": 0,
- "contract_id": "",
- "creative_type": 0,
- "epid": 0,
- "id": 0,
- "intro": "",
- "is_ad_loc": true,
- "label": "",
- "litpic": "",
- "mid": "266881802",
- "name": "",
- "null_frame": false,
- "pic": "",
- "pic_main_color": "",
- "pos_num": 0,
- "request_id": "1773065720942q172a26a100a197q4188",
- "server_type": 0,
- "src_id": 4766,
- "stime": 0,
- "style": 0,
- "sub_title": "",
- "title": "",
- "url": ""
- }
- ]
- }
- },
- "config": {
- "read_only": false,
- "show_up_flag": true,
- "showtopic": 1
- },
- "control": {
- "answer_guide_android_url": "https://www.bilibili.com/h5/newbie/entry?navhide=1&re_src=6",
- "answer_guide_icon_url": "http://i0.hdslb.com/bfs/emote/96940d16602cacbbac796245b7bb99fa9b5c970c.png",
- "answer_guide_ios_url": "https://www.bilibili.com/h5/newbie/entry?navhide=1&re_src=12",
- "answer_guide_text": "需要升级成为lv2会员后才可以评论,先去答题转正吧!",
- "bg_text": "",
- "child_input_text": "哎呦,不错哦,发条评论吧",
- "disable_jump_emote": false,
- "empty_page": null,
- "enable_charged": false,
- "enable_cm_biz_helper": false,
- "giveup_input_text": "不发没关系,请继续友善哦~",
- "input_disable": false,
- "preload_resources": null,
- "root_input_text": "哎呦,不错哦,发条评论吧",
- "screenshot_icon_state": 1,
- "show_text": "",
- "show_type": 1,
- "upload_picture_icon_state": 1,
- "web_selection": false
- },
- "cursor": {
- "all_count": 1102,
- "is_begin": true,
- "is_end": false,
- "mode": 2,
- "mode_text": "",
- "name": "最新评论",
- "next": 291,
- "pagination_reply": {
- "next_offset": "CAESEDE4MTU2MTkyOTgxNzI5MjQaADIDCKMC"
- },
- "prev": 0,
- "session_id": "",
- "support_mode": [
- 2
- ]
- },
- "effects": {
- "preloading": ""
- },
- "note": 1,
- "replies": [
- {
- "action": 0,
- "all_count": 1102,
- "assist": 0,
- "attr": 0,
- "content": {
- "jump_url": {
- "摩根士丹利": {
- "app_name": "",
- "app_package_name": "",
- "app_url_schema": "bilibili://search?from=appcommentline_search&search_from_source=appcommentline_search&direct_return=...",
- "click_report": "",
- "exposure_report": "",
- "extra": {
- "goods_click_report": "",
- "goods_cm_control": 0,
- "goods_exposure_report": "",
- "goods_show_type": 0,
- "is_word_search": true
- },
- "icon_position": 1,
- "is_half_screen": false,
- "match_once": true,
- "pc_url": "//search.bilibili.com/all?from_source=webcommentline_search&keyword=%E6%91%A9%E6%A0%B9%E5%A3%AB%E4%B...",
- "prefix_icon": "https://i0.hdslb.com/bfs/reply/9f3ad0659e84c96a711b88dd33f4bc2e945045e0.png",
- "state": 0,
- "title": "摩根士丹利",
- "underline": false
- },
- "经济预测": {
- "app_name": "",
- "app_package_name": "",
- "app_url_schema": "bilibili://search?from=appcommentline_search&search_from_source=appcommentline_search&direct_return=...",
- "click_report": "",
- "exposure_report": "",
- "extra": {
- "goods_click_report": "",
- "goods_cm_control": 0,
- "goods_exposure_report": "",
- "goods_show_type": 0,
- "is_word_search": true
- },
- "icon_position": 1,
- "is_half_screen": false,
- "match_once": true,
- "pc_url": "//search.bilibili.com/all?from_source=webcommentline_search&keyword=%E7%BB%8F%E6%B5%8E%E9%A2%84%E6%B...",
- "prefix_icon": "https://i0.hdslb.com/bfs/reply/9f3ad0659e84c96a711b88dd33f4bc2e945045e0.png",
- "state": 0,
- "title": "经济预测",
- "underline": false
- }
- },
- "max_line": 6,
- "members": [],
- "message": "现在来看摩根士丹利似乎对2024年国内经济预测过于乐观,对2025年更加乐观。"
- },
- "count": 0,
- "ctime": 1734319330,
- "cursor": "CAESEDE4MTU2MTkyOTgxNzI5MjQaADIDCKMC",
- "dialog": 0,
- "dialog_str": "0",
- "dynamic_id_str": "0",
- "fansgrade": 0,
- "folder": {
- "has_folded": false,
- "is_folded": false,
- "rule": ""
- },
- "invisible": false,
- "like": 2,
- "member": {
- "avatar": "https://i1.hdslb.com/bfs/face/0718f980e131e778a03c5d26070fead9116c97b2.jpg",
- "avatar_item": {
- "container_size": {
- "height": 1.8,
- "width": 1.8
- },
- "fallback_layers": {
- "is_critical_group": true,
- "layers": [
- {
- "general_spec": {
- "pos_spec": {
- "axis_x": 0.9,
- "axis_y": 0.9,
- "coordinate_pos": 2
- },
- "render_spec": {
- "opacity": 1
- },
- "size_spec": {
- "height": 1,
- "width": 1
- }
- },
- "layer_config": {
- "is_critical": true,
- "tags": {
- "AVATAR_LAYER": {},
- "GENERAL_CFG": {
- "config_type": 1,
- "general_config": {
- "web_css_style": {
- "borderRadius": "50%"
- }
- }
- }
- }
- },
- "resource": {
- "res_image": {
- "image_src": {
- "placeholder": 6,
- "remote": {
- "bfs_style": "widget-layer-avatar",
- "url": "https://i1.hdslb.com/bfs/face/0718f980e131e778a03c5d26070fead9116c97b2.jpg"
- },
- "src_type": 1
- }
- },
- "res_type": 3
- },
- "visible": true
- }
- ]
- },
- "mid": "173970208"
- },
- "contract_desc": "",
- "face_nft_new": 0,
- "fans_detail": null,
- "handle": "",
- "is_contractor": false,
- "is_senior_member": 0,
- "level_info": {
- "current_exp": 0,
- "current_level": 6,
- "current_min": 0,
- "next_exp": 0
- },
- "mid": "173970208",
- "nameplate": {
- "condition": "",
- "image": "",
- "image_small": "",
- "level": "",
- "name": "",
- "nid": 0
- },
- "nft_interaction": null,
- "official_verify": {
- "desc": "",
- "type": -1
- },
- "pendant": {
- "expire": 0,
- "image": "",
- "image_enhance": "",
- "image_enhance_frame": "",
- "n_pid": 0,
- "name": "",
- "pid": 0
- },
- "rank": "10000",
- "senior": {},
- "sex": "保密",
- "sign": "围脖同名",
- "uname": "石首鱼2099",
- "user_sailing": {
- "cardbg": null,
- "cardbg_with_focus": null,
- "pendant": null
- },
- "user_sailing_v2": {},
- "vip": {
- "accessStatus": 0,
- "avatar_subscript": 0,
- "dueRemark": "",
- "label": {
- "bg_color": "",
- "bg_style": 0,
- "border_color": "",
- "img_label_uri_hans": "",
- "img_label_uri_hans_static": "https://i0.hdslb.com/bfs/vip/d7b702ef65a976b20ed854cbd04cb9e27341bb79.png",
- "img_label_uri_hant": "",
- "img_label_uri_hant_static": "https://i0.hdslb.com/bfs/activity-plat/static/20220614/e369244d0b14644f5e1a06431e22a4d5/KJunwh19T5.p...",
- "label_goto": null,
- "label_id": 0,
- "label_theme": "",
- "path": "",
- "text": "",
- "text_color": "",
- "use_img_label": true
- },
- "nickname_color": "",
- "themeType": 0,
- "vipDueDate": 1626364800000,
- "vipStatus": 0,
- "vipStatusWarn": "",
- "vipType": 1
- }
- },
- "mid": 173970208,
- "mid_str": "173970208",
- "note_cvid_str": "0",
- "oid": 751305050,
- "oid_str": "751305050",
- "parent": 0,
- "parent_str": "0",
- "rcount": 0,
- "replies": null,
- "reply_control": {
- "location": "IP属地:河南",
- "max_line": 6,
- "support_share": true,
- "time_desc": "448天前发布",
- "translation_switch": 1
- },
- "root": 0,
- "root_str": "0",
- "rpid": 249826238320,
- "rpid_str": "249826238320",
- "state": 0,
- "track_info": "",
- "type": 1,
- "up_action": {
- "like": false,
- "reply": false
- }
- }
- ],
- "top": {
- "admin": null,
- "upper": {
- "action": 0,
- "assist": 0,
- "attr": 130,
- "content": {
- "jump_url": {
- "https://b23.tv/mall-eX9G4-14g3Rew3OK0": {
- "app_name": "",
- "app_package_name": "",
- "app_url_schema": "",
- "click_report": "",
- "exposure_report": "",
- "extra": {
- "goods_click_report": "{\"spmid\":\"\",\"is_attribution\":0,\"request_id\":\"1773065720900q172a26a103a54q1860\",\"from_spmid\":\"\",\"is_f...",
- "goods_cm_control": 1,
- "goods_exposure_report": "{\"spmid\":\"\",\"is_attribution\":0,\"request_id\":\"1773065720900q172a26a103a54q1860\",\"from_spmid\":\"\",\"is_f...",
- "goods_item_id": 902630132441288704,
- "goods_prefetched_cache": "{\"source_id\":0,\"resource_id\":0,\"is_ad_loc\":true,\"server_type\":1,\"ad_content\":{\"creative_id\":11166072...",
- "goods_show_type": 2,
- "is_word_search": false
- },
- "icon_position": 0,
- "is_half_screen": false,
- "match_once": false,
- "pc_url": "https://mall.bilibili.com/neul-next/index.html?page=mall-up_itemDetail&noTitleBar=1&itemsId=11073530...",
- "prefix_icon": "https://i0.hdslb.com/bfs/activity-plat/static/20230612/33208db4c24eef2890df876c57cc4123/qcTFC3aooI.p...",
- "state": 0,
- "title": "立即购买|芬田FT黄金手册(2024全球经济图表版)FTGoldManual",
- "underline": false
- }
- },
- "max_line": 6,
- "members": [],
- "message": "芬田财经已更新了FT黄金手册(宏观经济图表版),大量新数据高质量宏观经济图表信手拈来! https://b23.tv/mall-eX9G4-14g3Rew3OK0"
- },
- "count": 0,
- "ctime": 1719371621,
- "dialog": 0,
- "dialog_str": "0",
- "dynamic_id_str": "0",
- "fansgrade": 0,
- "folder": {
- "has_folded": false,
- "is_folded": false,
- "rule": ""
- },
- "invisible": false,
- "like": 0,
- "member": {
- "avatar": "https://i1.hdslb.com/bfs/face/8c49ba713cdf2d3dee0656c64c6c9a2701bd8e6d.jpg",
- "avatar_item": {
- "container_size": {
- "height": 1.8,
- "width": 1.8
- },
- "fallback_layers": {
- "is_critical_group": true,
- "layers": [
- {
- "general_spec": {
- "pos_spec": {
- "axis_x": 0.9,
- "axis_y": 0.9,
- "coordinate_pos": 2
- },
- "render_spec": {
- "opacity": 1
- },
- "size_spec": {
- "height": 1,
- "width": 1
- }
- },
- "layer_config": {
- "is_critical": true,
- "tags": {
- "AVATAR_LAYER": {},
- "GENERAL_CFG": {
- "config_type": 1,
- "general_config": {
- "web_css_style": {
- "borderRadius": "50%"
- }
- }
- }
- }
- },
- "resource": {
- "res_image": {
- "image_src": {
- "placeholder": 6,
- "remote": {
- "bfs_style": "widget-layer-avatar",
- "url": "https://i1.hdslb.com/bfs/face/8c49ba713cdf2d3dee0656c64c6c9a2701bd8e6d.jpg"
- },
- "src_type": 1
- }
- },
- "res_type": 3
- },
- "visible": true
- }
- ]
- },
- "mid": "598953856"
- },
- "contract_desc": "",
- "face_nft_new": 0,
- "fans_detail": {
- "guard_icon": "",
- "guard_level": 0,
- "honor_icon": "",
- "intimacy": 0,
- "is_receive": 0,
- "level": 6,
- "master_status": 0,
- "medal_color": 4293718521,
- "medal_color_border": 4293718521,
- "medal_color_end": 4293718521,
- "medal_color_level": 4287605200,
- "medal_color_name": 4283924408,
- "medal_id": 1308454,
- "medal_level_bg_color": 16777215,
- "medal_name": "FT泰谷",
- "score": 0,
- "uid": 598953856
- },
- "handle": "",
- "is_contractor": false,
- "is_senior_member": 1,
- "level_info": {
- "current_exp": 0,
- "current_level": 6,
- "current_min": 0,
- "next_exp": 0
- },
- "mid": "598953856",
- "nameplate": {
- "condition": "所有自制视频总播放数>=100万,数据次日更新",
- "image": "https://i0.hdslb.com/bfs/face/27a952195555e64508310e366b3e38bd4cd143fc.png",
- "image_small": "https://i0.hdslb.com/bfs/face/0497be49e08357bf05bca56e33a0637a273a7610.png",
- "level": "稀有勋章",
- "name": "知名偶像",
- "nid": 8
- },
- "nft_interaction": null,
- "official_verify": {
- "desc": "",
- "type": -1
- },
- "pendant": {
- "expire": 0,
- "image": "",
- "image_enhance": "",
- "image_enhance_frame": "",
- "n_pid": 0,
- "name": "",
- "pid": 0
- },
- "rank": "10000",
- "senior": {
- "status": 2
- },
- "sex": "男",
- "sign": "深度财经|THINK BIGGER|\n\n独家体系课程和重要资料见小店\n\n资深投资经验|人大金融科班|A/H上市治理&资本运作|",
- "uname": "芬田财经",
- "user_sailing": {
- "cardbg": {
- "fan": {
- "color": "#AC7B40",
- "color_format": {
- "colors": [
- "#AC7B40FF"
- ],
- "end_point": "0,100",
- "gradients": [
- 0
- ],
- "start_point": "0,0"
- },
- "is_fan": 1,
- "name": "命中注定",
- "num_desc": "000018",
- "num_prefix": "NO.",
- "number": 18
- },
- "id": 1766982667001,
- "image": "https://i0.hdslb.com/bfs/baselabs/op/6277b133b0058fb98d38374d2935241f40b57dd0de13dbfb333d28c1fb894f4...",
- "image_group": null,
- "jump_url": "https://www.bilibili.com/h5/mall/equity-link/collect-home?item_id=1766982667001&isdiy=0&part=card_bg...",
- "name": "命中注定",
- "type": "suit"
- },
- "cardbg_with_focus": null,
- "pendant": null
- },
- "user_sailing_v2": {
- "card_bg": {
- "fan": {
- "color": "#AC7B40",
- "color_format": {
- "colors": [
- "#AC7B40FF"
- ],
- "end_point": "0,100",
- "gradients": [
- 0
- ],
- "start_point": "0,0"
- },
- "is_fan": 1,
- "name": "命中注定",
- "num_desc": "000018",
- "num_prefix": "NO.",
- "number": 18
- },
- "id": 1766982667001,
- "image": "https://i0.hdslb.com/bfs/baselabs/op/6277b133b0058fb98d38374d2935241f40b57dd0de13dbfb333d28c1fb894f4...",
- "jump_url": "https://www.bilibili.com/h5/mall/equity-link/collect-home?item_id=1766982667001&isdiy=0&part=card_bg...",
- "name": "命中注定",
- "type": "suit"
- }
- },
- "vip": {
- "accessStatus": 0,
- "avatar_subscript": 0,
- "dueRemark": "",
- "label": {
- "bg_color": "",
- "bg_style": 0,
- "border_color": "",
- "img_label_uri_hans": "",
- "img_label_uri_hans_static": "https://i0.hdslb.com/bfs/vip/d7b702ef65a976b20ed854cbd04cb9e27341bb79.png",
- "img_label_uri_hant": "",
- "img_label_uri_hant_static": "https://i0.hdslb.com/bfs/activity-plat/static/20220614/e369244d0b14644f5e1a06431e22a4d5/KJunwh19T5.p...",
- "label_goto": null,
- "label_id": 0,
- "label_theme": "",
- "path": "",
- "text": "",
- "text_color": "",
- "use_img_label": true
- },
- "nickname_color": "",
- "themeType": 0,
- "vipDueDate": 1771344000000,
- "vipStatus": 0,
- "vipStatusWarn": "",
- "vipType": 1
- }
- },
- "mid": 598953856,
- "mid_str": "598953856",
- "note_cvid_str": "0",
- "oid": 751305050,
- "oid_str": "751305050",
- "parent": 0,
- "parent_str": "0",
- "rcount": 0,
- "replies": null,
- "reply_control": {
- "is_up_top": true,
- "max_line": 6,
- "support_share": true,
- "time_desc": "621天前发布",
- "translation_switch": 1
- },
- "root": 0,
- "root_str": "0",
- "rpid": 228211196256,
- "rpid_str": "228211196256",
- "state": 0,
- "track_info": "",
- "type": 1,
- "up_action": {
- "like": false,
- "reply": false
- }
- },
- "vote": null
- },
- "top_replies": [
- {
- "action": 0,
- "all_count": 1102,
- "assist": 0,
- "attr": 130,
- "content": {
- "jump_url": {
- "https://b23.tv/mall-eX9G4-14g3Rew3OK0": {
- "app_name": "",
- "app_package_name": "",
- "app_url_schema": "",
- "click_report": "",
- "exposure_report": "",
- "extra": {
- "goods_click_report": "{\"spmid\":\"\",\"is_attribution\":0,\"request_id\":\"1773065720900q172a26a103a54q1860\",\"from_spmid\":\"\",\"is_f...",
- "goods_cm_control": 1,
- "goods_exposure_report": "{\"spmid\":\"\",\"is_attribution\":0,\"request_id\":\"1773065720900q172a26a103a54q1860\",\"from_spmid\":\"\",\"is_f...",
- "goods_item_id": 902630132441288704,
- "goods_prefetched_cache": "{\"source_id\":0,\"resource_id\":0,\"is_ad_loc\":true,\"server_type\":1,\"ad_content\":{\"creative_id\":11166072...",
- "goods_show_type": 2,
- "is_word_search": false
- },
- "icon_position": 0,
- "is_half_screen": false,
- "match_once": false,
- "pc_url": "https://mall.bilibili.com/neul-next/index.html?page=mall-up_itemDetail&noTitleBar=1&itemsId=11073530...",
- "prefix_icon": "https://i0.hdslb.com/bfs/activity-plat/static/20230612/33208db4c24eef2890df876c57cc4123/qcTFC3aooI.p...",
- "state": 0,
- "title": "立即购买|芬田FT黄金手册(2024全球经济图表版)FTGoldManual",
- "underline": false
- }
- },
- "max_line": 6,
- "members": [],
- "message": "芬田财经已更新了FT黄金手册(宏观经济图表版),大量新数据高质量宏观经济图表信手拈来! https://b23.tv/mall-eX9G4-14g3Rew3OK0"
- },
- "count": 0,
- "ctime": 1719371621,
- "cursor": "CAESEDE4MTU2MTkyOTgxNzI5MjQaADIDCKMC",
- "dialog": 0,
- "dialog_str": "0",
- "dynamic_id_str": "0",
- "fansgrade": 0,
- "folder": {
- "has_folded": false,
- "is_folded": false,
- "rule": ""
- },
- "invisible": false,
- "like": 0,
- "member": {
- "avatar": "https://i1.hdslb.com/bfs/face/8c49ba713cdf2d3dee0656c64c6c9a2701bd8e6d.jpg",
- "avatar_item": {
- "container_size": {
- "height": 1.8,
- "width": 1.8
- },
- "fallback_layers": {
- "is_critical_group": true,
- "layers": [
- {
- "general_spec": {
- "pos_spec": {
- "axis_x": 0.9,
- "axis_y": 0.9,
- "coordinate_pos": 2
- },
- "render_spec": {
- "opacity": 1
- },
- "size_spec": {
- "height": 1,
- "width": 1
- }
- },
- "layer_config": {
- "is_critical": true,
- "tags": {
- "AVATAR_LAYER": {},
- "GENERAL_CFG": {
- "config_type": 1,
- "general_config": {
- "web_css_style": {
- "borderRadius": "50%"
- }
- }
- }
- }
- },
- "resource": {
- "res_image": {
- "image_src": {
- "placeholder": 6,
- "remote": {
- "bfs_style": "widget-layer-avatar",
- "url": "https://i1.hdslb.com/bfs/face/8c49ba713cdf2d3dee0656c64c6c9a2701bd8e6d.jpg"
- },
- "src_type": 1
- }
- },
- "res_type": 3
- },
- "visible": true
- }
- ]
- },
- "mid": "598953856"
- },
- "contract_desc": "",
- "face_nft_new": 0,
- "fans_detail": {
- "guard_icon": "",
- "guard_level": 0,
- "honor_icon": "",
- "intimacy": 0,
- "is_receive": 0,
- "level": 6,
- "master_status": 0,
- "medal_color": 4293718521,
- "medal_color_border": 4293718521,
- "medal_color_end": 4293718521,
- "medal_color_level": 4287605200,
- "medal_color_name": 4283924408,
- "medal_id": 1308454,
- "medal_level_bg_color": 16777215,
- "medal_name": "FT泰谷",
- "score": 0,
- "uid": 598953856
- },
- "handle": "",
- "is_contractor": false,
- "is_senior_member": 1,
- "level_info": {
- "current_exp": 0,
- "current_level": 6,
- "current_min": 0,
- "next_exp": 0
- },
- "mid": "598953856",
- "nameplate": {
- "condition": "所有自制视频总播放数>=100万,数据次日更新",
- "image": "https://i0.hdslb.com/bfs/face/27a952195555e64508310e366b3e38bd4cd143fc.png",
- "image_small": "https://i0.hdslb.com/bfs/face/0497be49e08357bf05bca56e33a0637a273a7610.png",
- "level": "稀有勋章",
- "name": "知名偶像",
- "nid": 8
- },
- "nft_interaction": null,
- "official_verify": {
- "desc": "",
- "type": -1
- },
- "pendant": {
- "expire": 0,
- "image": "",
- "image_enhance": "",
- "image_enhance_frame": "",
- "n_pid": 0,
- "name": "",
- "pid": 0
- },
- "rank": "10000",
- "senior": {
- "status": 2
- },
- "sex": "男",
- "sign": "深度财经|THINK BIGGER|\n\n独家体系课程和重要资料见小店\n\n资深投资经验|人大金融科班|A/H上市治理&资本运作|",
- "uname": "芬田财经",
- "user_sailing": {
- "cardbg": {
- "fan": {
- "color": "#AC7B40",
- "color_format": {
- "colors": [
- "#AC7B40FF"
- ],
- "end_point": "0,100",
- "gradients": [
- 0
- ],
- "start_point": "0,0"
- },
- "is_fan": 1,
- "name": "命中注定",
- "num_desc": "000018",
- "num_prefix": "NO.",
- "number": 18
- },
- "id": 1766982667001,
- "image": "https://i0.hdslb.com/bfs/baselabs/op/6277b133b0058fb98d38374d2935241f40b57dd0de13dbfb333d28c1fb894f4...",
- "image_group": null,
- "jump_url": "https://www.bilibili.com/h5/mall/equity-link/collect-home?item_id=1766982667001&isdiy=0&part=card_bg...",
- "name": "命中注定",
- "type": "suit"
- },
- "cardbg_with_focus": null,
- "pendant": null
- },
- "user_sailing_v2": {
- "card_bg": {
- "fan": {
- "color": "#AC7B40",
- "color_format": {
- "colors": [
- "#AC7B40FF"
- ],
- "end_point": "0,100",
- "gradients": [
- 0
- ],
- "start_point": "0,0"
- },
- "is_fan": 1,
- "name": "命中注定",
- "num_desc": "000018",
- "num_prefix": "NO.",
- "number": 18
- },
- "id": 1766982667001,
- "image": "https://i0.hdslb.com/bfs/baselabs/op/6277b133b0058fb98d38374d2935241f40b57dd0de13dbfb333d28c1fb894f4...",
- "jump_url": "https://www.bilibili.com/h5/mall/equity-link/collect-home?item_id=1766982667001&isdiy=0&part=card_bg...",
- "name": "命中注定",
- "type": "suit"
- }
- },
- "vip": {
- "accessStatus": 0,
- "avatar_subscript": 0,
- "dueRemark": "",
- "label": {
- "bg_color": "",
- "bg_style": 0,
- "border_color": "",
- "img_label_uri_hans": "",
- "img_label_uri_hans_static": "https://i0.hdslb.com/bfs/vip/d7b702ef65a976b20ed854cbd04cb9e27341bb79.png",
- "img_label_uri_hant": "",
- "img_label_uri_hant_static": "https://i0.hdslb.com/bfs/activity-plat/static/20220614/e369244d0b14644f5e1a06431e22a4d5/KJunwh19T5.p...",
- "label_goto": null,
- "label_id": 0,
- "label_theme": "",
- "path": "",
- "text": "",
- "text_color": "",
- "use_img_label": true
- },
- "nickname_color": "",
- "themeType": 0,
- "vipDueDate": 1771344000000,
- "vipStatus": 0,
- "vipStatusWarn": "",
- "vipType": 1
- }
- },
- "mid": 598953856,
- "mid_str": "598953856",
- "note_cvid_str": "0",
- "oid": 751305050,
- "oid_str": "751305050",
- "parent": 0,
- "parent_str": "0",
- "rcount": 0,
- "replies": null,
- "reply_control": {
- "is_up_top": true,
- "max_line": 6,
- "support_share": true,
- "time_desc": "621天前发布",
- "translation_switch": 1
- },
- "root": 0,
- "root_str": "0",
- "rpid": 228211196256,
- "rpid_str": "228211196256",
- "state": 0,
- "track_info": "",
- "type": 1,
- "up_action": {
- "like": false,
- "reply": false
- }
- }
- ],
- "upper": {
- "mid": 598953856
- },
- "vote": 0
- },
- "message": "OK",
- "ttl": 1
- }
+ "*/*": {
+ "schema": {
+ "$ref": "#/components/schemas/Result"
}
}
},
- "description": "default response"
+ "description": "OK"
}
},
"summary": "Video Comments",
"tags": [
"Bilibili"
],
+ "x-api-version": "v2",
+ "x-highlights": [],
"x-order": 18001400
}
},
@@ -4469,29 +900,30 @@
}
],
"responses": {
- "default": {
+ "200": {
"content": {
- "application/json": {
- "example": {
- "code": 0,
- "data": []
+ "*/*": {
+ "schema": {
+ "$ref": "#/components/schemas/Result"
}
}
},
- "description": "default response"
+ "description": "OK"
}
},
"summary": "Video Danmaku",
"tags": [
"Bilibili"
],
+ "x-api-version": "v2",
+ "x-highlights": [],
"x-order": 18001300
}
},
"/api/bilibili/get-video-detail/v2": {
"get": {
"description": "Get Bilibili video Details data, including metadata (title, tags, and publishing time), for tracking video performance and engagement metrics and analyzing content metadata and uploader information.",
- "operationId": "getVideoDetailV2",
+ "operationId": "getBilibiliVideoDetailV2",
"parameters": [
{
"description": "Access token for the API.",
@@ -4513,1130 +945,30 @@
}
],
"responses": {
- "default": {
+ "200": {
"content": {
- "application/json": {
- "example": {
- "code": 0,
- "data": {
- "abtest": {
- "comment_version_hash": "e0090ab8af",
- "enable_live_anime": "ENABLE",
- "enable_shortcut_key": "DISABLE",
- "enable_strip_ad": "ENABLE",
- "rcmd_tab_version": "DISABLE"
- },
- "adData": {
- "2624": null,
- "2625": [
- {
- "activity_type": 0,
- "ad_cb": "CJru8A0QjMawYxiqpKLyAyAFKAEw6bbzATjFFEIhMTc3MzA2Nzg4OTUyN3ExNzJhMjVhMTQ4YTEwMXExOTQ2SPfW05jNM1IG6bmk...",
- "ad_desc": "",
- "adver_name": "",
- "agency": "",
- "area": 1,
- "asg_id": 0,
- "business_mark": {
- "bg_border_color": "#999999FF",
- "bg_color": "",
- "bg_color_night": "",
- "border_color": "#999999FF",
- "border_color_night": "#686868",
- "img_height": 0,
- "img_url": "",
- "img_width": 0,
- "text": "广告",
- "text_color": "#999999FF",
- "text_color_night": "#686868",
- "type": 2
- },
- "card_type": 0,
- "click_url": "https://tkio-redirect.solar-engine.com/receive/turl/bnFTtva?idfa_md5=__IDFAMD5__&caid=__CAID__&custo...",
- "click_urls": [
- "https://tkio-redirect.solar-engine.com/receive/turl/bnFTtva?idfa_md5=__IDFAMD5__&caid=__CAID__&custo..."
- ],
- "cm_mark": 1,
- "contract_id": "",
- "creative_id": 1044943402,
- "creative_type": 2,
- "crowd_id": 0,
- "epid": 0,
- "feedback_panel": {
- "close_rec_tips": "操作成功",
- "open_rec_tips": "将减少展示此类广告",
- "panel_type_text": "",
- "toast": "将减少相似广告推荐"
- },
- "id": 0,
- "image_urls": null,
- "inline": {
- "inline_barrage_switch": 0,
- "inline_type": 0,
- "inline_url": "",
- "inline_use_same": 0
- },
- "intro": "",
- "is_ad": true,
- "is_ad_loc": true,
- "jump_target": 1,
- "label": "",
- "list_type": 0,
- "litpic": "",
- "mid": "",
- "name": "",
- "null_frame": false,
- "operater": "",
- "pic": "https://i0.hdslb.com/bfs/sycp/sanlian/image/bdc1713baa7143428776474197d3a214.jpeg",
- "pic_main_color": "",
- "pos_num": 1,
- "request_id": "1773067889527q172a25a148a101q1946",
- "res_id": 0,
- "room": null,
- "sales_type": 11,
- "season": null,
- "server_type": 1,
- "show_url": "https://tkio-redirect.solar-engine.com/receive/turl/bnFTtva?idfa_md5=__IDFAMD5__&caid=__CAID__&custo...",
- "show_urls": [
- "https://tkio-redirect.solar-engine.com/receive/turl/bnFTtva?idfa_md5=__IDFAMD5__&caid=__CAID__&custo..."
- ],
- "src_id": 2629,
- "stime": 0,
- "style": 0,
- "sub_title": "",
- "title": "",
- "track_id": "pbaes.W6xpVxzzJoKX2ZCYuO8Jn1Ywkyo-DZfI78tOz_NLWQSsdFtCfrVKJHpE2m5iuAfRUJzahGjMNgQQiZ4SxL2vztmJjP-Hmq...",
- "url": "https://tkio-redirect.solar-engine.com/receive/turl/bnFTtva?custom_params_1=pbaes.W6xpVxzzJoKX2ZCYuO...",
- "wx_program_info": null
- }
- ],
- "3038": [
- {
- "activity_type": 0,
- "ad_cb": "",
- "ad_desc": "",
- "adver_name": "",
- "agency": "",
- "area": 1,
- "asg_id": 1692855,
- "business_mark": null,
- "card_type": 0,
- "click_urls": null,
- "cm_mark": 0,
- "contract_id": "",
- "creative_type": 0,
- "crowd_id": 0,
- "epid": 0,
- "feedback_panel": null,
- "id": 1745160,
- "image_urls": null,
- "inline": {
- "inline_barrage_switch": 1,
- "inline_type": 0,
- "inline_url": "",
- "inline_use_same": 1
- },
- "intro": "",
- "is_ad_loc": false,
- "jump_target": 0,
- "label": "",
- "list_type": 0,
- "litpic": "",
- "mid": "",
- "name": "这画上的是你吗?",
- "null_frame": false,
- "operater": "manager_banner_10948",
- "pic": "http://i0.hdslb.com/bfs/banner/e2f98d4f82e93cfa989bcc5e35812a4af62aa155.jpg",
- "pic_main_color": "",
- "pos_num": 1,
- "request_id": "1773067889",
- "res_id": 3038,
- "room": null,
- "sales_type": 0,
- "season": null,
- "server_type": 0,
- "show_urls": null,
- "src_id": 3039,
- "stime": 1772676000,
- "style": 0,
- "sub_title": "",
- "title": "",
- "track_id": "",
- "url": "https://www.bilibili.com/blackboard/era/2zRwoXMIeEqGjVCT.html",
- "wx_program_info": null
- }
- ],
- "4330": [
- {
- "activity_type": 0,
- "ad_cb": "CMyPqwwQxZ3/TxjxvoSEAyBDKAEw1f4oOOshQiExNzczMDY3ODg5NTI3cTE3MmEyNWExNDhhMTAxcTE5NDZI99bTmM0zUgbpuaTl...",
- "ad_desc": "和画师线下面对面互动",
- "adver_name": "",
- "agency": "",
- "area": 1,
- "asg_id": 0,
- "business_mark": {
- "bg_border_color": "#999999FF",
- "bg_color": "",
- "bg_color_night": "",
- "border_color": "#999999FF",
- "border_color_night": "#686868",
- "img_height": 0,
- "img_url": "",
- "img_width": 0,
- "text": "广告",
- "text_color": "#999999FF",
- "text_color_night": "#686868",
- "type": 2
- },
- "card_type": 0,
- "click_urls": null,
- "cm_mark": 1,
- "contract_id": "",
- "creative_id": 813768561,
- "creative_type": 2,
- "crowd_id": 0,
- "epid": 0,
- "feedback_panel": {
- "close_rec_tips": "操作成功",
- "feedback_panel_detail": [
- {
- "icon_url": "https://i0.hdslb.com/bfs/sycp/mng/201907/a53df8f189bb12666a39d10ad1babcf5.png",
- "jump_type": 1,
- "jump_url": "",
- "module_id": 1,
- "secondary_panel": [
- {
- "reason_id": 1,
- "text": "不感兴趣"
- }
- ],
- "sub_text": "(选择后将优化广告展示)",
- "text": "屏蔽广告"
- }
- ],
- "open_rec_tips": "将减少展示此类广告",
- "panel_type_text": "广告",
- "toast": "将减少相似广告推荐"
- },
- "id": 0,
- "image_urls": null,
- "inline": {
- "inline_barrage_switch": 0,
- "inline_type": 0,
- "inline_url": "",
- "inline_use_same": 0
- },
- "intro": "",
- "is_ad": true,
- "is_ad_loc": true,
- "jump_target": 1,
- "label": "",
- "list_type": 0,
- "litpic": "",
- "mid": "",
- "name": "工房画师&百联造趣场周年活动签绘情报来袭!",
- "null_frame": false,
- "operater": "",
- "pic": "https://i0.hdslb.com/bfs/sycp/sanlian/image/fb89a82b8f31496a811ae6576bd58e82.png",
- "pic_main_color": "",
- "pos_num": 1,
- "request_id": "1773067889527q172a25a148a101q1946",
- "res_id": 0,
- "room": null,
- "sales_type": 12,
- "season": null,
- "server_type": 1,
- "show_urls": null,
- "src_id": 4331,
- "stime": 0,
- "style": 0,
- "sub_title": "",
- "title": "工房画师&百联造趣场周年活动签绘情报来袭!",
- "track_id": "pbaes.W6xpVxzzJoKX2ZCYuO8Jn1Ywkyo-DZfI78tOz_NLWQQhPBK504IBeQz5cEC60mbENdT040HHEPTfVgao6u75_ZgmVI6n-I...",
- "url": "https://mall.bilibili.com/act/aicms/O2aaft1X6R.html?track_id=pbaes.W6xpVxzzJoKX2ZCYuO8Jn1Ywkyo-DZfI7...",
- "wx_program_info": null
- }
- ]
- },
- "adsControl": {
- "has_danmu": 0,
- "has_live_booking_ad": false,
- "under_player_scroller_seconds": 60
- },
- "aid": 114733139104444,
- "availableVideoList": [
- {
- "aid": 116029766243995,
- "bvid": "BV1ZnF4zXE9Y",
- "cid": 35893478185,
- "cover": "http://i2.hdslb.com/bfs/archive/af94f560d516ddda59c2b9c0cf9ea499c84f1b48.jpg",
- "is_lesson_video": false,
- "list": [
- {
- "aid": 116029766243995,
- "bvid": "BV1ZnF4zXE9Y",
- "cid": 35893478185,
- "p": 1,
- "title": "【短线升维教程】:如何在混沌行情中「识别」确定性买点?"
- }
- ],
- "redirect_url": "",
- "title": "20260206 混沌期找确定性买点",
- "upid": 554414980
- }
- ],
- "bmpDefDomain": "",
- "bvid": "BV1JiKhzDEmo",
- "channelKv": [
- {
- "channelId": 25,
- "config": {
- "enableSub": 0
- },
- "icon": "homeicon/ai/1",
- "name": "人工智能",
- "route": "ai",
- "sub": [
- {
- "name": "AI学习",
- "route": "tutorial",
- "subChannelId": 250001,
- "tid": 2096,
- "tkey": "CommonChannel:aiTutorial",
- "url": ""
- }
- ],
- "tid": 1011,
- "tkey": "CommonChannel:ai",
- "url": "//www.bilibili.com/c/ai/"
- }
- ],
- "cid": 30659969522,
- "cidMap": {
- "114733139104444": {
- "aid": 114733139104444,
- "bvid": "BV1JiKhzDEmo",
- "cids": {
- "1": 30659969522
- }
- },
- "BV1JiKhzDEmo": {
- "aid": 114733139104444,
- "bvid": "BV1JiKhzDEmo",
- "cids": {
- "1": 30659969522
- }
- }
- },
- "constants": {},
- "continuousPlay": true,
- "corePlayer": {
- "id": 0,
- "ref": "",
- "str": "