Practical Metal Chips
Langosh, Crist and Schuppe
USD436.99 USD251.31
In stock
★ 1.4 (4061)
Experience the lime brilliance of our Gloves, perfect for wealthy environments
- Category
- beauty
products / #186
Langosh, Crist and Schuppe
USD436.99 USD251.31
In stock
★ 1.4 (4061)
Experience the lime brilliance of our Gloves, perfect for wealthy environments
curl -sS \
"https://example-data.com/api/v1/products/186" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/186"
);
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/186"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/186"
)
product = res.json() {
"id": 186,
"sku": "VZX2W7EP73",
"name": "Practical Metal Chips",
"slug": "practical-metal-chips-186",
"description": "Experience the lime brilliance of our Gloves, perfect for wealthy environments",
"category": "beauty",
"brand": "Langosh, Crist and Schuppe",
"price": 436.99,
"salePrice": 251.31,
"currency": "USD",
"inStock": true,
"stockCount": 30,
"rating": 1.4,
"ratingCount": 4061,
"imageUrl": "https://picsum.photos/seed/product-186/800/800",
"createdAt": "2026-03-21T19:32:51.754Z",
"updatedAt": "2026-05-17T13:11:04.613Z"
}