example-data.com

products / #143

Handcrafted Granite Soap

Handcrafted Granite Soap

Green Group

USD362.49 USD296.77

In stock

★ 1.4 (2479)

The Elwyn Towels is the latest in a series of polished products from Ziemann and Sons

Category
kitchen

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/143"
)
product = res.json()
{
  "id": 143,
  "sku": "1BFTDEWYVL",
  "name": "Handcrafted Granite Soap",
  "slug": "handcrafted-granite-soap-143",
  "description": "The Elwyn Towels is the latest in a series of polished products from Ziemann and Sons",
  "category": "kitchen",
  "brand": "Green Group",
  "price": 362.49,
  "salePrice": 296.77,
  "currency": "USD",
  "inStock": true,
  "stockCount": 19,
  "rating": 1.4,
  "ratingCount": 2479,
  "imageUrl": "https://picsum.photos/seed/product-143/800/800",
  "createdAt": "2025-08-01T03:21:10.610Z",
  "updatedAt": "2026-05-13T11:36:16.651Z"
}
Draftbit