---
document_id: agent.collection.task.jd_product_reviews_v1
schema_version: 2
parent_document_id: agent.querying
section: querying
---

<!-- Generated by scripts.build_agent_guide; do not edit. -->

# Product reviews / 商品评价

Get one page of JD product reviews.

按 SKU 分页获取京东商品评价。

Task / 任务: `jd_product_reviews_v1`
Platform / 平台: JD / 京东
Billing / 计费: 14 Credits per successful task / 每个成功任务 14 Credits
Estimate / 估价: call `estimate_collection`; start directly when `approval_required=false`, otherwise obtain approval for `upper_bound_credits`.
估价：调用 `estimate_collection`；`approval_required=false` 时直接启动，否则请用户确认 `upper_bound_credits`。

## Limitations / 限制

- One fixed marketplace data route is called per task; no automatic version fallback or cross-platform fan-out is performed.
- Returned data is bounded and projected into task-specific public fields; missing fields are not inferred.
- Each successful request is charged once by the configured Asklear task price.
- Production exposure requires the configured marketplace data connection and bounded live acceptance evidence.

## Inputs / 输入

- `sku_id` — JD SKU ID / 京东 SKU ID; kind=text; required=True; default=''; bounds=min_length=1, max_length=256
- `page` — Page / 页码; kind=integer; required=False; default=1; bounds=min=1, max=1000

## Minimal call / 最小调用

`estimate_collection`

```json
{
  "task_query": "查询指定京东商品评价",
  "task_code": "jd_product_reviews_v1",
  "input": {
    "sku_id": "<京东商品 SKU ID>",
    "page": 1
  }
}
```


## Result and pagination / 结果与分页

- mode=page
- current page: `data.page`; page bound: `data.max_page`; next page: `data.next_page` → `page` (null means stop). / 下一页使用 `data.next_page`，为 null 时结束；总页数未知不代表没有下一页。

Only the fields listed below are part of the stable result contract. /
只有下方列出的字段属于稳定结果契约。

## Result fields / 结果字段

- `meta.request_id` — type=string; Asklear request identifier for tracing. / 用于追踪的 Asklear 请求 ID。
- `meta.api_name` — type=string; Executed collection operation name. / 实际执行的采集操作名称。
- `meta.latency_ms` — type=integer; Collection execution latency in milliseconds. / 采集执行耗时（毫秒）。
- `meta.credits_charged` — type=integer; Asklear user-side Credits settled for this task after completion. / 任务完成后 Asklear 用户侧实际结算的 Credits。
- `data.items` — type=array<object>; Review records returned by this page. / 本页返回的评论记录。
- `data.page` — type=integer; Current review page, starting at 1. / 当前评论页码，从 1 开始。
- `data.max_page` — type=integer|null; Total review pages when reported. / 来源提供时返回评论总页数。
- `data.next_page` — type=integer|null; Next page number when another review page is available. / 还有下一页评论时返回下一页页码。
- `data.total` — type=integer|null; Total review count when reported. / 来源提供时返回评论总数。
- `data.items[].review_id` — type=string|integer|null; Public review identifier. / 公开评论 ID。
- `data.items[].item_id` — type=string|integer|null; Reviewed product identifier when supplied. / 如来源提供则返回被评论商品 ID。
- `data.items[].author_name` — type=string|null; Review author display name when supplied. / 如来源提供则返回评论者名称。
- `data.items[].content` — type=string|null; Review text when supplied. / 如来源提供则返回评论正文。
- `data.items[].rating` — type=scalar|null; Review rating when supplied. / 如来源提供则返回评论评分。
- `data.items[].created_at` — type=string|integer|null; Review creation time when supplied. / 如来源提供则返回评论时间。
- `data.items[].verified_purchase` — type=boolean|null; Whether the source marks the review as verified. / 来源是否标记为已验证购买。
- `data.items[].like_count` — type=integer|null; Review like or helpful count when supplied. / 如来源提供则返回评论点赞或有用数。
- `data.items[].url` — type=string|null; Safe public review URL when supplied. / 如来源提供则返回安全的公开评论链接。
- `data.items[].images` — type=array<string>; Safe public review image URLs when supplied. / 如来源提供则返回安全的评论图片链接。

Use `list_collection_tasks` as the runtime authority, then `describe_collection_task` for one task's full input contract, examples and limits. Collection access is entitlement-gated. /
以 `list_collection_tasks` 返回为运行时准据，再用 `describe_collection_task` 取单个任务的完整入参契约、示例与限制；采集能力受 entitlement 控制。
