Skip to content
Eden Engine

Xiaohongshu Product Reviews (by SKU ID)

omnial/xiaohongshu-app-get-product-reviews

Given a Xiaohongshu product SKU ID, returns that product's reviews: review text, 1-5 ratings for the product/service/shipping, the reviewer's public display name, attached review photos (with dimensions), the purchased variant (e.g. size/color), and buyer tags like repeat customer. Also includes a separate photo-first gallery of review images for the same product. A SKU with no reviews returns an empty list rather than an error.

activeper callv1
Provider
Web & Business Data Network
Category
xiaohongshu
Provider price
$0.020475 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "sku_id"
  ],
  "properties": {
    "page": {
      "type": "integer",
      "default": 0,
      "description": "Page number, start from 0"
    },
    "sku_id": {
      "type": "string",
      "examples": [
        "669ddd44e05f3700011067ed"
      ],
      "description": "Product SKU ID"
    },
    "from_page": {
      "type": "string",
      "default": "score_page",
      "examples": [
        "score_page"
      ],
      "description": "From page"
    },
    "share_pics_only": {
      "type": "integer",
      "default": 0,
      "description": "Show reviews with images only: 0=no, 1=yes"
    },
    "sort_strategy_type": {
      "type": "integer",
      "default": 0,
      "description": "Sort strategy: 0=general, 1=latest"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "hasMore": {
          "type": "boolean",
          "description": "Whether a later `page` has more reviews. Absent (not `false`) on the no-reviews case observed."
        },
        "reviews": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "tags": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": true
                },
                "description": "Buyer-status tags attached to the review itself, e.g. \"回头客\" (repeat customer). Observed only on some reviews."
              },
              "userInfo": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string",
                    "description": "The reviewer's public display name."
                  },
                  "avatar": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The reviewer's public avatar image URL. Value withheld (stripped to null) in this tool's output -- only whether it's populated is observable."
                  },
                  "anonymous": {
                    "type": "boolean"
                  },
                  "visitorFlag": {
                    "type": "boolean"
                  }
                },
                "description": "The reviewer's own public identity, as attached to their review.",
                "additionalProperties": true
              },
              "variants": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string",
                      "description": "e.g. \"尺寸\" (size)."
                    },
                    "value": {
                      "type": "string",
                      "description": "e.g. \"s\", \"H01\"."
                    }
                  },
                  "additionalProperties": true
                },
                "description": "The specific product variant (e.g. size, color) this review's purchase was for."
              },
              "reviewInfo": {
                "type": "object",
                "properties": {
                  "tags": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "name": {
                          "type": "string"
                        }
                      },
                      "additionalProperties": true
                    },
                    "description": "Descriptive experience tags attached to the review, e.g. \"很好看\" (looks great), drawn from a fixed vendor vocabulary."
                  },
                  "content": {
                    "type": "string",
                    "description": "The review text."
                  },
                  "imagesV3": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "url": {
                          "type": [
                            "string",
                            "null"
                          ],
                          "description": "Full-size photo URL. Value withheld (stripped to null) in this tool's output."
                        },
                        "width": {
                          "type": "number"
                        },
                        "height": {
                          "type": "number"
                        },
                        "thumbnailUrl": {
                          "type": [
                            "string",
                            "null"
                          ],
                          "description": "Thumbnail photo URL. Value withheld (stripped to null) in this tool's output."
                        }
                      },
                      "additionalProperties": true
                    },
                    "description": "The review's attached photos, with pixel dimensions."
                  },
                  "reviewId": {
                    "type": "string",
                    "description": "Opaque per-review identifier, digit-string shaped."
                  },
                  "itemScore": {
                    "type": "number",
                    "description": "1-5 product rating."
                  },
                  "likeCount": {
                    "type": "number"
                  },
                  "newSkuScore": {
                    "type": "number",
                    "description": "1-5 rating for this specific product variant, per the endpoint's own naming."
                  },
                  "serviceScore": {
                    "type": "number",
                    "description": "1-5 seller-service rating."
                  },
                  "createTimeDesc": {
                    "type": "string",
                    "description": "The review's post date as a display string, e.g. \"2025-09-26\"."
                  },
                  "logisticsScore": {
                    "type": "number",
                    "description": "1-5 shipping/logistics rating."
                  },
                  "subReviewCount": {
                    "type": "number",
                    "description": "Number of replies to this review."
                  },
                  "highlightSubContent": {
                    "type": "string",
                    "description": "An additional highlighted excerpt. Observed as an empty string on every real review calibrated -- a populated shape was never observed."
                  }
                },
                "additionalProperties": true
              },
              "translateFlag": {
                "type": "boolean",
                "description": "Whether the review text was machine-translated."
              }
            },
            "additionalProperties": true
          },
          "description": "One entry per review. Empty array on the no-reviews/invalid-SKU case observed, which still bills the normal per-call price."
        },
        "sortedPicResult": {
          "type": "object",
          "properties": {
            "hasMore": {
              "type": "boolean"
            },
            "sortedPicsInfos": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "userInfo": {
                    "type": "object",
                    "properties": {
                      "name": {
                        "type": "string",
                        "description": "The photo poster's public display name."
                      },
                      "avatar": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "Withheld (stripped to null) in this tool's output."
                      },
                      "visitorFlag": {
                        "type": "boolean"
                      }
                    },
                    "additionalProperties": true
                  },
                  "imageContents": {
                    "type": "object",
                    "properties": {
                      "url": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "Withheld (stripped to null) in this tool's output."
                      },
                      "desc": {
                        "type": "string",
                        "description": "Where the photo was posted, e.g. \"发布于笔记评论区\" (posted in the review comments)."
                      },
                      "order": {
                        "type": "number"
                      },
                      "width": {
                        "type": "number"
                      },
                      "height": {
                        "type": "number"
                      },
                      "content": {
                        "type": "string",
                        "description": "The photo's caption."
                      },
                      "createTime": {
                        "type": "string",
                        "description": "Short display date, e.g. \"02-03\"."
                      },
                      "thumbnailUrl": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "Withheld (stripped to null) in this tool's output."
                      }
                    },
                    "additionalProperties": true
                  }
                },
                "additionalProperties": true
              }
            },
            "totalSortedPicNums": {
              "type": "number"
            }
          },
          "description": "A separate, photo-first gallery view of review images for this product. Entirely absent on the no-reviews case observed.",
          "additionalProperties": true
        }
      },
      "additionalProperties": true
    }
  },
  "description": "The product review payload, as returned at routing.responseResultPath ($.output). The no-reviews case (see the invalid-sku-error fixture) shapes to `{ data: { reviews: [] } }` -- `hasMore` and `sortedPicResult` are entirely absent on that case, not merely empty.",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.020475
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 23, 2026