example-data.com
Menu
Browse docs and collections

product-reviews

product-reviews

Page 38 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": 889,
      "productId": 193,
      "userId": 127,
      "rating": 1.5,
      "title": "Aedificium magni sint conor anser vesper.",
      "body": "Coepi derideo suscipit demulceo damno libero.",
      "isVerified": true,
      "helpfulCount": 200,
      "createdAt": "2024-09-09T12:35:53.120Z",
      "updatedAt": "2025-12-07T12:11:51.174Z"
    },
    {
      "id": 890,
      "productId": 193,
      "userId": 38,
      "rating": 5,
      "title": "Aperiam vindico capitulus.",
      "body": "Caecus desipio tum alii animi. Combibo vociferor voveo occaecati defessus patior cornu conturbo.",
      "isVerified": true,
      "helpfulCount": 19,
      "createdAt": "2024-06-10T04:18:46.838Z",
      "updatedAt": "2025-06-13T08:47:36.967Z"
    },
    {
      "id": 891,
      "productId": 194,
      "userId": 212,
      "rating": 5,
      "title": "Subvenio depopulo cogo defetiscor carpo neque appono.",
      "body": "Celebrer advoco celer vulnero soleo deleniti quibusdam audacia aptus. Consequuntur in temptatio architecto pecto aliquid iusto repellendus. Atqui cruentus vigilo speculum cedo.",
      "isVerified": true,
      "helpfulCount": 92,
      "createdAt": "2024-11-04T04:40:34.136Z",
      "updatedAt": "2025-02-11T19:01:29.097Z"
    }
  ],
  "meta": {
    "page": 38,
    "limit": 24,
    "total": 925,
    "totalPages": 39
  },
  "links": {
    "self": "/api/v1/product-reviews?page=38&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=39&limit=24",
    "prev": "/api/v1/product-reviews?page=37&limit=24"
  }
}