example-data.com
Menu
Browse docs and collections

product-reviews

product-reviews

Page 39 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": 913,
      "productId": 199,
      "userId": 159,
      "rating": 5,
      "title": "Vulnero candidus celo iure victus viduo.",
      "body": "Tenetur conturbo cubo caelestis amoveo aveho cui.",
      "isVerified": true,
      "helpfulCount": 71,
      "createdAt": "2024-07-09T14:46:31.377Z",
      "updatedAt": "2024-09-07T02:28:46.728Z"
    },
    {
      "id": 914,
      "productId": 199,
      "userId": 91,
      "rating": 5,
      "title": "Attero suus taedium anser uter aperio.",
      "body": "Caveo aeternus contego atrox cunae aetas.",
      "isVerified": false,
      "helpfulCount": 180,
      "createdAt": "2026-04-24T23:55:37.745Z",
      "updatedAt": "2026-04-27T13:02:21.944Z"
    },
    {
      "id": 915,
      "productId": 199,
      "userId": 174,
      "rating": 4.5,
      "title": "Titulus tyrannus vestrum clibanus amitto conspergo speciosus.",
      "body": "Ducimus acer conicio carmen argumentum caecus.",
      "isVerified": true,
      "helpfulCount": 20,
      "createdAt": "2026-05-06T16:49:50.523Z",
      "updatedAt": "2026-05-17T05:53:19.489Z"
    }
  ],
  "meta": {
    "page": 39,
    "limit": 24,
    "total": 925,
    "totalPages": 39
  },
  "links": {
    "self": "/api/v1/product-reviews?page=39&limit=24",
    "first": "/api/v1/product-reviews?page=1&limit=24",
    "last": "/api/v1/product-reviews?page=39&limit=24",
    "next": null,
    "prev": "/api/v1/product-reviews?page=38&limit=24"
  }
}