Practical Marble Towels
Kling - Walker
USD251.30 USD193.10
In stock
★ 2.3 (2671)
The tan Table combines Finland aesthetics with Praseodymium-based durability
- Category
- toys
Overview
products / #64
Kling - Walker
USD251.30 USD193.10
In stock
★ 2.3 (2671)
The tan Table combines Finland aesthetics with Praseodymium-based durability
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/64" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/64" ); 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/64"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/64"
)
product = res.json() Response
{
"id": 64,
"sku": "H4KB7M2V9F",
"name": "Practical Marble Towels",
"slug": "practical-marble-towels-64",
"description": "The tan Table combines Finland aesthetics with Praseodymium-based durability",
"category": "toys",
"brand": "Kling - Walker",
"price": 251.3,
"salePrice": 193.1,
"currency": "USD",
"inStock": true,
"stockCount": 474,
"rating": 2.3,
"ratingCount": 2671,
"imageUrl": "https://picsum.photos/seed/product-64/800/800",
"createdAt": "2024-08-23T04:47:42.401Z",
"updatedAt": "2025-10-11T03:56:50.898Z"
}