Small Silk Salad
Dickinson - Moen
USD470.49 USD368.15
In stock
★ 4.3 (1572)
Discover the cow-like agility of our Bike, perfect for whirlwind users
- Category
- beauty
products / #182
Dickinson - Moen
USD470.49 USD368.15
In stock
★ 4.3 (1572)
Discover the cow-like agility of our Bike, perfect for whirlwind users
curl -sS \
"https://example-data.com/api/v1/products/182" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/182"
);
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/182"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/182"
)
product = res.json() {
"id": 182,
"sku": "WJQQ9IKF70",
"name": "Small Silk Salad",
"slug": "small-silk-salad-182",
"description": "Discover the cow-like agility of our Bike, perfect for whirlwind users",
"category": "beauty",
"brand": "Dickinson - Moen",
"price": 470.49,
"salePrice": 368.15,
"currency": "USD",
"inStock": true,
"stockCount": 406,
"rating": 4.3,
"ratingCount": 1572,
"imageUrl": "https://picsum.photos/seed/product-182/800/800",
"createdAt": "2026-05-14T03:31:53.521Z",
"updatedAt": "2026-05-17T13:53:26.844Z"
}