Electronic Cotton Towels
Yundt LLC
USD405.69
Out of stock
★ 2.3 (146)
Discover the ostrich-like agility of our Salad, perfect for bossy users
- Category
- home
products / #17
Yundt LLC
USD405.69
Out of stock
★ 2.3 (146)
Discover the ostrich-like agility of our Salad, perfect for bossy users
curl -sS \
"https://example-data.com/api/v1/products/17" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/17"
);
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/17"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/17"
)
product = res.json() {
"id": 17,
"sku": "2AHGG8Z8RI",
"name": "Electronic Cotton Towels",
"slug": "electronic-cotton-towels-17",
"description": "Discover the ostrich-like agility of our Salad, perfect for bossy users",
"category": "home",
"brand": "Yundt LLC",
"price": 405.69,
"salePrice": null,
"currency": "USD",
"inStock": false,
"stockCount": 0,
"rating": 2.3,
"ratingCount": 146,
"imageUrl": "https://picsum.photos/seed/product-17/800/800",
"createdAt": "2025-08-23T13:29:25.162Z",
"updatedAt": "2026-01-10T17:05:49.765Z"
}