Taobao & Tmall Product Reviews API (V3) – JustOneAPI

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

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实现商品库存监控与预警

摘要:本文介绍如何使用Python调用淘宝关键词API获取商品库存信息,并通过设置库存阈值实现库存预警。通过代码实现库存数据的定时采集、存储和分析,当商品库存低于预设阈值时,自动发送预警信息,帮助商家...

淘宝/天猫获得淘宝商品评论 API 返回值说明

item_review-获得淘宝商品评论 [查看演示]  taobao.item_review公共参数请求地址: https://api-gw.onebound.cn/taobao...

淘宝店铺所有商品 API:快速获取全店商品数据(极简版)

一、文章主题《淘宝店铺所有商品 API:Python 一键拉取全店商品,结构化 JSON 解析》二、核心内容(简洁落地版)1. 为什么要用淘宝店铺商品 API?批量获取店铺在售 / 全部商品,包括标题...

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

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

淘宝商品详情API解析其深度应用场景

淘宝商品详情API(如taobao.item.get)作为电商数据交互的核心工具,其应用场景已从基础商品展示延伸至全链路数字化运营。以下从技术集成、业务创新、生态协同三个维度,进一步解析其深度应用场景...

京东商品评论 API 实战:业务场景与完整 JSON 返回参考

一、接口简介京东商品评论核心接口 jd.union.open.goods.review.list.get,基于宙斯开放平台,采用 HTTPS+OAuth2.0 鉴权,支持分页查询商品评价、晒图、追评、...

发表评论    

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