latestOpenAPI 3.0.32026-08-083681145.6 KB

19558399745c

Products

GET /products/reviews

get/products/reviews

Query parameters

limitinteger
cursorstring

Response

Successful response

limitinteger

The number of items per page.

cursorstring

Cursor for cursor-based pagination. Use this for efficient pagination of large result sets. Null when no more pages available.

Example response

{
  "product_reviews_with_details": [
    {
      "product_review": {
        "id": "rev_abc123",
        "rating": 5,
        "comment": "Love these candles! They smell amazing and last a long time.",
        "brand_order_id": "bo_bxdmjbwxid",
        "created_at": "2019-04-15T00:09:15.000Z",
        "updated_at": "2019-04-15T00:09:15.000Z",
        "published_at": "2019-04-16T00:00:00.000Z",
        "images": [
          {
            "id": "i_adqaiy3htm",
            "width": 1000,
            "height": 1000,
            "url": "https://cdn.faire.com/374cd3041a4c4.png",
            "original_url": "https://example.com/original-image.png"
          }
        ],
        "reply": {
          "comment": "Thank you so much for your kind words! We're thrilled you love our candles.",
          "created_at": "2019-04-17T00:00:00.000Z"
        }
      },
      "product_info": {
        "product_id": "p_123",
        "name": "Faire's fantastic candle"
      }
    }
  ]
}