Practical Gold Soap
Wyman Group
USD347.39 USD179.88
In stock
★ 3.4 (640)
Innovative Table featuring tinted technology and Concrete construction
- Category
- books
Overview
products / #131
Wyman Group
USD347.39 USD179.88
In stock
★ 3.4 (640)
Innovative Table featuring tinted technology and Concrete construction
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/131" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/131" ); const product = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/products.d.ts https://example-data.com/types/products.d.ts
import type { Product } from "./types/products";
const res = await fetch(
"https://example-data.com/api/v1/products/131"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/131"
)
product = res.json() Response
{
"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"
}