example-data.com

product-reviews

product-reviews

Browse 925 product-reviews records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

productId
Tasty Silk Tuna USD219.09
userId
Bradford Doyle @bradford.doyle42
rating
5
title
Casus vapulus despecto texo vomer a audacia decretum.
body
Volutabrum debeo vociferor vorago credo cribro alter defungo.
isVerified
true
helpfulCount
164
createdAt
updatedAt
productId
Tasty Silk Tuna USD219.09
userId
Oma Franecki-Johnson @oma.franecki-johnson
rating
3.5
title
Clarus cenaculum aptus asperiores careo sulum suscipio.
body
Statua at summa terga ter absconditus.
isVerified
true
helpfulCount
162
createdAt
updatedAt
productId
Tasty Silk Tuna USD219.09
userId
Karlee Hudson-Turner @karlee.hudson-turner88
rating
3.5
title
Assentator fugiat alveus adfero currus beneficium uberrime.
body
Volutabrum deleo derideo cruciamentum vergo fugit texo accusator tabgo. Crinis video adflicto veniam correptius incidunt trado deserunt. Clamo caput adamo.
isVerified
true
helpfulCount
99
createdAt
updatedAt
productId
Tasty Silk Tuna USD219.09
userId
Tiara Wilderman @tiara_wilderman
rating
4
title
Eaque ventito eius compello.
body
Assentator tempus adsuesco ustilo arbitro cedo utilis aspicio vaco depromo.
isVerified
true
helpfulCount
132
createdAt
updatedAt
productId
Tasty Silk Tuna USD219.09
userId
Sarah West @sarah.west
rating
5
title
Ipsam amitto vere adeo laboriosam trucido.
body
Comptus officia vir incidunt. Tamdiu pariatur compello. Ventito animi voveo ulterius.
isVerified
true
helpfulCount
90
createdAt
updatedAt
productId
Unbranded Silk Cheese USD176.79
userId
Celia D'Amore @celia_damore
rating
4
title
Bardus dolorum studio truculenter sopor appello admoneo quo.
body
Apto villa adopto audentia aggredior denuo. Deleo veritatis absum tredecim speculum cubitum quos ante tollo antea. Carus animus delego civitas supra urbs sodalitas eaque.
isVerified
false
helpfulCount
78
createdAt
updatedAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/product-reviews?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/product-reviews?limit=25"
);
const { data, meta } = await res.json();
import type { ProductReview, ListEnvelope } from "https://example-data.com/types/product-reviews.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/product-reviews?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<ProductReview>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/product-reviews",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 1,
      "productId": 1,
      "userId": 79,
      "rating": 5,
      "title": "Casus vapulus despecto texo vomer a audacia decretum.",
      "body": "Volutabrum debeo vociferor vorago credo cribro alter defungo.",
      "isVerified": true,
      "helpfulCount": 164,
      "createdAt": "2025-12-27T04:04:42.578Z",
      "updatedAt": "2026-05-05T05:45:41.060Z"
    },
    {
      "id": 2,
      "productId": 1,
      "userId": 242,
      "rating": 3.5,
      "title": "Clarus cenaculum aptus asperiores careo sulum suscipio.",
      "body": "Statua at summa terga ter absconditus.",
      "isVerified": true,
      "helpfulCount": 162,
      "createdAt": "2024-12-19T07:53:39.488Z",
      "updatedAt": "2025-02-08T15:45:29.269Z"
    },
    {
      "id": 3,
      "productId": 1,
      "userId": 36,
      "rating": 3.5,
      "title": "Assentator fugiat alveus adfero currus beneficium uberrime.",
      "body": "Volutabrum deleo derideo cruciamentum vergo fugit texo accusator tabgo. Crinis video adflicto veniam correptius incidunt trado deserunt. Clamo caput adamo.",
      "isVerified": true,
      "helpfulCount": 99,
      "createdAt": "2026-03-03T11:04:03.805Z",
      "updatedAt": "2026-03-10T18:53:19.212Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 925,
    "totalPages": 37
  },
  "links": {
    "self": "/api/v1/product-reviews?page=1",
    "first": "/api/v1/product-reviews?page=1",
    "last": "/api/v1/product-reviews?page=37",
    "next": "/api/v1/product-reviews?page=2",
    "prev": null
  }
}

View full response →

Draftbit