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
Overview
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
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/138" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/138" ); const product = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/products.d.ts https://example-data.com/types/products.d.ts
import type { Product } from "./types/products";
const res = await fetch(
"https://example-data.com/api/v1/products/138"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/138"
)
product = res.json() Response
{
"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"
}