Electronic Concrete Cheese
Willms, Lynch and Stark
USD246.75 USD215.25
In stock
★ 4.3 (1704)
Practical Cheese designed with Wooden for spotless performance
- Category
- home
Overview
products / #23
Willms, Lynch and Stark
USD246.75 USD215.25
In stock
★ 4.3 (1704)
Practical Cheese designed with Wooden for spotless performance
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/23" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/23" ); 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/23"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/23"
)
product = res.json() Response
{
"id": 23,
"sku": "HDN9XNRX22",
"name": "Electronic Concrete Cheese",
"slug": "electronic-concrete-cheese-23",
"description": "Practical Cheese designed with Wooden for spotless performance",
"category": "home",
"brand": "Willms, Lynch and Stark",
"price": 246.75,
"salePrice": 215.25,
"currency": "USD",
"inStock": true,
"stockCount": 237,
"rating": 4.3,
"ratingCount": 1704,
"imageUrl": "https://picsum.photos/seed/product-23/800/800",
"createdAt": "2024-12-17T17:10:04.567Z",
"updatedAt": "2025-12-07T04:45:02.981Z"
}