Taobao & Tmall Product Reviews API (V3) – JustOneAPI

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

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 1688 拍立淘搜索 API 系列:JSON 数据反馈全解析

1688 拍立淘(item_search_img)是电商开发者高频使用的以图搜货 API,通过图片 URL/Base64 快速匹配同款 / 相似商品,返回标准化 JSON 结构。本文从接口调用、JSO...

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

前言在私域电商运营、多平台铺货、商品数据聚合的业务场景中,微店商品详情API是开发者和私域从业者最核心的结构化数据入口。它无需搭建复杂的页面爬虫体系,就能稳定获取全维度的微店商品信息,大幅降低私域电商...

淘宝 API 上货 / 商品搬家 业务场景实现 + JSON 返回示例

(简单直白、程序员直接可用)一、业务场景说明淘宝 API 上货 / 搬家 = 自动把商品从其他平台(1688、拼多多、抖音、淘宝其他店铺)搬到淘宝店不用人工复制标题、图片、详情、SKU,全自动上架。能...

淘宝商品评论 API(taobao.item.reviews.get)完整介绍与标准 JSON 返回示例

一、接口基础说明1. 接口基础信息接口名称:taobao.item.reviews.get所属平台:淘宝开放平台 TOP(Taobao Open Platform)请求方式:HTTP POST/GET...

电商评论API深度解析:淘宝、京东接口实战指南,解锁商品口碑数据价值

一、精选高吸引力主题标题(多风格可选)爆款引流型吃透淘宝京东评论API!轻松抓取电商口碑数据,赋能竞品分析电商数据掘金:一文读懂淘宝、京东商品评论API接口全逻辑告别手动扒数据!主流电商评论API接口...

小红书笔记评论 API:Python 数据解析(超简单、通用、直接用)

我给你最简单、最清晰、可直接复制的解析教程,不管返回什么结构,你都能轻松提取评论、用户、点赞、时间、回复。一、先看标准返回结构(你要解析的就是这个)json{  "cod...

发表评论    

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