Modern Marble Gloves
Senger - Stamm
USD73.69
Out of stock
★ 4.9 (2114)
Savor the salty essence in our Gloves, designed for glaring culinary adventures
- Category
- electronics
Overview
products / #189
Senger - Stamm
USD73.69
Out of stock
★ 4.9 (2114)
Savor the salty essence in our Gloves, designed for glaring culinary adventures
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/189" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/189" ); 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/189"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/189"
)
product = res.json() Response
{
"id": 189,
"sku": "ZS67J7TDJ8",
"name": "Modern Marble Gloves",
"slug": "modern-marble-gloves-189",
"description": "Savor the salty essence in our Gloves, designed for glaring culinary adventures",
"category": "electronics",
"brand": "Senger - Stamm",
"price": 73.69,
"salePrice": null,
"currency": "USD",
"inStock": false,
"stockCount": 0,
"rating": 4.9,
"ratingCount": 2114,
"imageUrl": "https://picsum.photos/seed/product-189/800/800",
"createdAt": "2024-07-29T08:48:15.601Z",
"updatedAt": "2026-02-08T22:53:40.895Z"
}