Modern Aluminum Towels
Runolfsdottir LLC
USD227.85
In stock
★ 1.6 (2927)
Experience the black brilliance of our Cheese, perfect for ornate environments
- Category
- books
products / #141
Runolfsdottir LLC
USD227.85
In stock
★ 1.6 (2927)
Experience the black brilliance of our Cheese, perfect for ornate environments
curl -sS \
"https://example-data.com/api/v1/products/141" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/141"
);
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/141"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/141"
)
product = res.json() {
"id": 141,
"sku": "4C13EHJK5B",
"name": "Modern Aluminum Towels",
"slug": "modern-aluminum-towels-141",
"description": "Experience the black brilliance of our Cheese, perfect for ornate environments",
"category": "books",
"brand": "Runolfsdottir LLC",
"price": 227.85,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 157,
"rating": 1.6,
"ratingCount": 2927,
"imageUrl": "https://picsum.photos/seed/product-141/800/800",
"createdAt": "2025-12-01T04:23:32.616Z",
"updatedAt": "2026-01-21T16:24:24.817Z"
}