Taobao & Tmall Product Reviews API (V3) – JustOneAPI

知名用户180079054732个月前未分类108

Taobao & Tmall Product Reviews API (V3) – JustOneAPI

Version: V3
Status: Production-ready (Healthy)
Endpoint: GET /api/taobao/get-item-comment/v3
Data Format: JSON
Platform: Unified for Taobao + Tmall

1. Overview

The Taobao & Tmall Product Reviews API (V3) from JustOneAPI provides structured, real-time user review data for any Taobao or Tmall item. It unifies both platforms into a single interface, so you don’t need separate logic for Taobao vs Tmall.
Common use cases:
  • Competitor review analysis & sentiment monitoring

  • Product quality research and rating statistics

  • Reputation tracking & negative review alerting

  • E-commerce BI dashboards and review scraping at scale

  • Content generation (e.g., top pros/cons from reviews)


2. Request Parameters (GET)

All parameters are passed as query strings.
表格
ParameterTypeRequiredDefaultDescription
tokenstringYour JustOneAPI access token
itemIdstringTaobao/Tmall product ID (num_iid)
pageinteger1Page number (pagination)
pageSizeinteger20Reviews per page (max 50)
orderTypestringgeneralfeedbackdate (newest first) / general
rateTypestringallall / good / neutral / bad
hasPicbooleanfalseFilter reviews with images only

3. Full JSON Response Example (V3)

json{
  "code": 200,
  "msg": "success",
  "data": {
    "itemId": "681234567890",
    "total": 1258,
    "page": 1,
    "pageSize": 20,
    "reviews": [
      {
        "reviewId": "152345678901234567",
        "userNick": "t***8",
        "isAnonymous": true,
        "score": 5,
        "content": "Quality is very good, delivery fast, will buy again.",
        "created": "2026-05-20 14:22:35",
        "likeCount": 42,
        "skuInfo": "Color: Black | Size: XL",
        "picUrls": [
          "https://img01.taobaocdn.com/imgextra/i1/xxx.jpg",
          "https://img02.taobaocdn.com/imgextra/i2/xxx.jpg"
        ],
        "additionalReview": {
          "content": "Used for one month, still perfect.",
          "created": "2026-05-23 09:11:22"
        },
        "sellerReply": {
          "content": "Thank you for your support!",
          "created": "2026-05-20 16:40:12"
        }
      }
    ],
    "hasNext": true
  },
  "requestId": "req-20260526-xxx"}

4. Key Fields Explained

  • reviewId: Unique ID for deduplication

  • score: 1–5 star rating

  • content: Main review text

  • created: Review time (UTC+8)

  • skuInfo: Exact variant (color/size)

  • picUrls: Array of review photos

  • additionalReview: Follow-up review (追评)

  • sellerReply: Official store reply

  • hasNext: Pagination flag (simpler than calculating last page)


5. Error Codes

表格
CodeMeaning
200Success
400Invalid parameters
401Token missing or invalid
403Permission denied / quota exceeded
404Item not found
500Server error (retry later)

6. Usage Example (Python)

python
运行import requests
TOKEN = "your_token"ITEM_ID = "681234567890"URL = f"https://docs.justoneapi.com/api/taobao/get-item-comment/v3?token={TOKEN}&itemId={ITEM_ID}&page=1&pageSize=10&orderType=feedbackdate"resp = requests.get(URL)print(resp.json())

7. Why Use JustOneAPI V3

  • Unified Taobao + Tmall → one endpoint for both

  • Simpler paginationhasNext boolean

  • Clean JSON → no messy nested structures

  • Built-in filtering → rating, images, date

  • Stable & monitored → public health status


相关文章

其他一些常见的淘宝API接口是什么

除了之前提到的商品管理、库存更新、价格调整等接口外,天猫开放平台还提供了一系列其他重要的API接口,以下是一些常见的例子:商品搜索与推荐接口:关键词搜索商品接口:如taobao.item.search...

用Java语言解析京东商品评论接口的JSON数据时,如何处理可能出现的异常情况?

Java 解析京东商品评论 API JSON 数据:异常处理完整方案在 Java 调用京东商品评论 API 并解析 JSON 数据时,异常可能出现在 HTTP 请求阶段(如网络波动、权限失效...

小红书笔记详情API介绍、应用场景及JSON返回示例

一、接口概述小红书笔记详情API是用于获取单条小红书笔记完整数据的接口。通过传入笔记ID,可获取笔记标题、正文、图片视频、发布时间、标签、作者信息、点赞收藏评论等全部公开数据。接口采用Token鉴权、...

淘宝店铺所有商品API接口,json数据返回

淘宝店铺所有商品API接口返回的JSON数据通常包含商品基本信息、动态数据及分页信息,字段如商品ID、标题、价格、库存、图片、促销信息、店铺名称、总商品数、当前页码、每页数量等。以下是一个淘宝店铺所有...

Jumia商品详情API在跨境选品中的应用

Jumia 作为非洲市场的头部电商平台,其商品详情 API(含官方合作接口与非官方逆向接口)是跨境选品的核心数据工具。通过 API 获取的商品价格、库存、销量、评价、竞品动态等数据,能帮助卖家精准判断...

推荐一些淘宝商品详情的API接口

以下是淘宝开放平台最常用、最实用的商品详情类 API 接口,按官方标准接口、淘宝客专用、批量 / 补充接口分类整理,附核心用途、参数、适用场景与返回要点,方便你直接选型开发。一、官方标准商品详情接口(...

发表评论    

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。