Soft Gold Soap
Zulauf - Rice
USD93.59
In stock
★ 3.5 (4884)
Featuring Californium-enhanced technology, our Fish offers unparalleled lone performance
- Category
- beauty
products / #36
Zulauf - Rice
USD93.59
In stock
★ 3.5 (4884)
Featuring Californium-enhanced technology, our Fish offers unparalleled lone performance
curl -sS \
"https://example-data.com/api/v1/products/36" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/36"
);
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/36"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/36"
)
product = res.json() {
"id": 36,
"sku": "M2IIHDYZGL",
"name": "Soft Gold Soap",
"slug": "soft-gold-soap-36",
"description": "Featuring Californium-enhanced technology, our Fish offers unparalleled lone performance",
"category": "beauty",
"brand": "Zulauf - Rice",
"price": 93.59,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 429,
"rating": 3.5,
"ratingCount": 4884,
"imageUrl": "https://picsum.photos/seed/product-36/800/800",
"createdAt": "2025-04-28T04:59:02.474Z",
"updatedAt": "2025-11-30T22:08:06.900Z"
}