example-data.com

products / #40

Fantastic Bronze Mouse

Fantastic Bronze Mouse

Schneider, Brown and Spencer

USD235.30

In stock

★ 4.9 (3226)

The Abner Soap is the latest in a series of bleak products from Lueilwitz, Ullrich and O'Reilly

Category
kitchen

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/products/40" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/products/40"
);
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/40"
);
const product = (await res.json()) as Product;
import requests

res = requests.get(
    "https://example-data.com/api/v1/products/40"
)
product = res.json()
{
  "id": 40,
  "sku": "5MYC0IZBR8",
  "name": "Fantastic Bronze Mouse",
  "slug": "fantastic-bronze-mouse-40",
  "description": "The Abner Soap is the latest in a series of bleak products from Lueilwitz, Ullrich and O'Reilly",
  "category": "kitchen",
  "brand": "Schneider, Brown and Spencer",
  "price": 235.3,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 239,
  "rating": 4.9,
  "ratingCount": 3226,
  "imageUrl": "https://picsum.photos/seed/product-40/800/800",
  "createdAt": "2025-12-08T12:09:08.171Z",
  "updatedAt": "2025-12-13T15:07:44.645Z"
}
Draftbit