example-data.com

products / #157

Small Metal Soap

Small Metal Soap

O'Conner, Bode and Yost

USD363.30

In stock

★ 4.5 (3074)

New lime Computer with ergonomic design for unlawful comfort

Category
kitchen

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/157"
)
product = res.json()
{
  "id": 157,
  "sku": "VUXZ0Q690U",
  "name": "Small Metal Soap",
  "slug": "small-metal-soap-157",
  "description": "New lime Computer with ergonomic design for unlawful comfort",
  "category": "kitchen",
  "brand": "O'Conner, Bode and Yost",
  "price": 363.3,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 21,
  "rating": 4.5,
  "ratingCount": 3074,
  "imageUrl": "https://picsum.photos/seed/product-157/800/800",
  "createdAt": "2024-08-11T13:08:39.990Z",
  "updatedAt": "2026-02-02T19:40:34.772Z"
}
Draftbit