example-data.com

products / #131

Practical Gold Soap

Practical Gold Soap

Wyman Group

USD347.39 USD179.88

In stock

★ 3.4 (640)

Innovative Table featuring tinted technology and Concrete construction

Category
books

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/131"
)
product = res.json()
{
  "id": 131,
  "sku": "BUNEQ7N8MN",
  "name": "Practical Gold Soap",
  "slug": "practical-gold-soap-131",
  "description": "Innovative Table featuring tinted technology and Concrete construction",
  "category": "books",
  "brand": "Wyman Group",
  "price": 347.39,
  "salePrice": 179.88,
  "currency": "USD",
  "inStock": true,
  "stockCount": 288,
  "rating": 3.4,
  "ratingCount": 640,
  "imageUrl": "https://picsum.photos/seed/product-131/800/800",
  "createdAt": "2025-02-18T05:50:11.598Z",
  "updatedAt": "2025-07-20T13:48:20.817Z"
}
Draftbit