example-data.com
Menu
Browse docs and collections

product-reviews

product-reviews

Page 2 of 39.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/product-reviews?limit=25"

JavaScript example

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

TypeScript example

// Download once: mkdir -p types && curl -o types/product-reviews.d.ts https://example-data.com/types/product-reviews.d.ts
import type { ProductReview, ListEnvelope } from "./types/product-reviews";

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

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/product-reviews",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 25,
      "productId": 5,
      "userId": 74,
      "rating": 2.5,
      "title": "Toties pariatur constans.",
      "body": "Exercitationem minus beatus clamo abstergo strenuus adhaero laboriosam. Vitae spiculum vitae pecco abscido argumentum.",
      "isVerified": true,
      "helpfulCount": 100,
      "createdAt": "2024-12-16T22:34:36.936Z",
      "updatedAt": "2025-08-26T23:32:26.025Z"
    },
    {
      "id": 26,
      "productId": 5,
      "userId": 188,
      "rating": 5,
      "title": "Subseco aro solutio aureus voluptatum vinco deleniti decet.",
      "body": "Vinitor verbera verbum strues denique. Cohibeo avarus denuncio adipisci supra.",
      "isVerified": true,
      "helpfulCount": 130,
      "createdAt": "2026-05-20T18:33:12.234Z",
      "updatedAt": "2026-05-21T18:37:34.220Z"
    },
    {
      "id": 27,
      "productId": 5,
      "userId": 46,
      "rating": 5,
      "title": "Desparatus vos vitae sol adulescens labore cursim cresco.",
      "body": "Impedit aut voluptate.",
      "isVerified": true,
      "helpfulCount": 61,
      "createdAt": "2024-08-29T20:53:48.604Z",
      "updatedAt": "2025-01-19T21:21:31.417Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 925,
    "totalPages": 39
  },
  "links": {
    "self": "/api/v1/product-reviews?page=2&limit=24",
    "first": "/api/v1/product-reviews?page=1&limit=24",
    "last": "/api/v1/product-reviews?page=39&limit=24",
    "next": "/api/v1/product-reviews?page=3&limit=24",
    "prev": "/api/v1/product-reviews?page=1&limit=24"
  }
}