Taobao & Tmall Product Reviews API (V3) – JustOneAPI

知名用户180079054733个月前未分类168

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


相关文章

技术实战:京东商品详情接口接入指南与JSON返回参考

在国内电商选品、多平台铺货、价格监控、CPS分销的业务场景中,京东商品详情接口是开发者和电商从业者最核心的结构化数据入口。它无需搭建复杂的页面爬虫体系,就能稳定获取全维度的京东商品信息,大幅降低电商相...

淘宝拍立淘 API(taobao.item.search.img)

前言一句话说明:上传图片(URL/Base64),返回淘宝同款 / 相似商品列表,用于比价、内容带货、同款监控。一、如何确保数据稳定性(简单有效)严控调用频率免费版 QPS≤5,商用版按套餐限流;间隔...

python采集淘宝关键词搜索API接口系列,json数据返回

以下是一套完整的 Python 代码方案,用于采集淘宝关键词搜索 API 接口并处理返回的 JSON 数据,包含接口调用、数据解析、异常处理、批量采集、数据存储全流程,适配稳定性和可靠性要求:一、核心...

淘宝沙箱环境:关键词搜索 API 调试避坑指南(含测试工具使用)

在淘宝沙箱环境中调试关键词搜索 API 时,需重点关注网络配置、参数设置、权限管理、签名算法及测试工具使用,以下是具体避坑指南:一、网络配置问题无法连接沙箱环境 API 地址:原因:网络配置问题,如防...

京东API接口系列——京东店铺所有商品数据

京东店铺所有商品API接口核心功能与技术实现一、核心功能全量商品数据获取支持获取指定京东店铺内全部商品信息,涵盖商品ID、名称、品牌、型号、价格(原价/促销价)、库存、销量、评价数、主图URL、详情描...

淘宝商品详情 API 的合法性与风险规避指南

淘宝商品详情 API 的合法性与风险规避指南淘宝 / 天猫商品详情相关 API 的使用核心遵循 **「官方授权为唯一合法前提,合规调用为风险规避核心」** 原则,阿里开放平台对 API 的使用场景、调...

发表评论    

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