Tasty Marble Table
Grant, Hessel and Abbott
USD269.19
In stock
★ 2.3 (540)
Savor the crunchy essence in our Keyboard, designed for untried culinary adventures
- Category
- books
products / #138
Grant, Hessel and Abbott
USD269.19
In stock
★ 2.3 (540)
Savor the crunchy essence in our Keyboard, designed for untried culinary adventures
curl -sS \
"https://example-data.com/api/v1/products/138" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/138"
);
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/138"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/138"
)
product = res.json() {
"id": 138,
"sku": "EG87FCS7ND",
"name": "Tasty Marble Table",
"slug": "tasty-marble-table-138",
"description": "Savor the crunchy essence in our Keyboard, designed for untried culinary adventures",
"category": "books",
"brand": "Grant, Hessel and Abbott",
"price": 269.19,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 209,
"rating": 2.3,
"ratingCount": 540,
"imageUrl": "https://picsum.photos/seed/product-138/800/800",
"createdAt": "2026-03-20T12:49:39.507Z",
"updatedAt": "2026-03-23T22:32:24.285Z"
}