example-data.com

products / #128

Fresh Plastic Computer

Fresh Plastic Computer

Gutkowski Inc

USD143.69

In stock

★ 3.5 (694)

Our tiger-friendly Fish ensures husky comfort for your pets

Category
home

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/products/128" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/products/128"
);
const product = await res.json();
import type { Product } from "https://example-data.com/types/products.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/products/128"
);
const product = (await res.json()) as Product;
import requests

res = requests.get(
    "https://example-data.com/api/v1/products/128"
)
product = res.json()
{
  "id": 128,
  "sku": "IFIXLCYCM2",
  "name": "Fresh Plastic Computer",
  "slug": "fresh-plastic-computer-128",
  "description": "Our tiger-friendly Fish ensures husky comfort for your pets",
  "category": "home",
  "brand": "Gutkowski Inc",
  "price": 143.69,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 257,
  "rating": 3.5,
  "ratingCount": 694,
  "imageUrl": "https://picsum.photos/seed/product-128/800/800",
  "createdAt": "2025-02-25T07:35:36.249Z",
  "updatedAt": "2026-03-21T00:15:29.636Z"
}
Draftbit