Recycled Wooden Towels
Boehm LLC
USD442.05 USD290.75
Out of stock
★ 4.7 (4941)
Discover the snake-like agility of our Salad, perfect for royal users
- Category
- toys
products / #54
Boehm LLC
USD442.05 USD290.75
Out of stock
★ 4.7 (4941)
Discover the snake-like agility of our Salad, perfect for royal users
curl -sS \
"https://example-data.com/api/v1/products/54" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/54"
);
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/54"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/54"
)
product = res.json() {
"id": 54,
"sku": "827UMZO3QD",
"name": "Recycled Wooden Towels",
"slug": "recycled-wooden-towels-54",
"description": "Discover the snake-like agility of our Salad, perfect for royal users",
"category": "toys",
"brand": "Boehm LLC",
"price": 442.05,
"salePrice": 290.75,
"currency": "USD",
"inStock": false,
"stockCount": 0,
"rating": 4.7,
"ratingCount": 4941,
"imageUrl": "https://picsum.photos/seed/product-54/800/800",
"createdAt": "2024-06-24T10:48:12.091Z",
"updatedAt": "2025-06-01T02:10:50.686Z"
}