Taobao & Tmall Product Reviews API (V3) – JustOneAPI

知名用户1800790547341分钟前未分类1

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


相关文章

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

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

如何使用淘宝商品详情API获取商品信息呢

使用淘宝商品详情API(如taobao.item.get)获取商品信息,需遵循以下步骤:从注册开发者账号到处理响应数据,每一步都需细致操作以确保成功调用。以下是详细指南:一、准备工作注册淘宝开放平台账...

如何申请淘宝开放平台API权限

申请淘宝开放平台API权限的流程如下:注册淘宝开放平台开发者账号访问淘宝开放平台官网(https://open.taobao.com/),使用支付宝账号或手机号完成注册。提交个人/企业实名认证信息(如...

python采集微店商品详情API接口系列,json数据返回

以下是基于微店商品详情 API 接口的 Python 采集系列实现,涵盖基础详情、规格参数、库存状态、卖家信息等多维度数据采集,并以 JSON 格式返回。代码适配微店公开 API 的请求规则,包含反爬...

Python 实现京东商品详情 API 数据准确性校验(极简可直接用)

前言我给你最简洁、最实用、程序员直接复制运行的版本,专门校验京东 API 返回的商品数据是否准确、合法、可用。一、校验核心(只做最重要的)校验返回结构是否正常商品 ID(sku_id)是否有效商品标题...

京东拍立淘按图搜索API接口,json数据返回

京东拍立淘按图搜索API接口通过图像识别技术,允许用户上传图片或提供图片URL,在京东商品库中搜索相似商品,并返回结构化的JSON数据。以下是该接口的核心要点与JSON数据返回结构分析:一、接口核心功...

发表评论    

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