Fantastic Plastic Pants
Price, Stracke and Hartmann
USD498.19
In stock
★ 2.7 (2666)
Ergonomic Keyboard made with Bronze for all-day inborn support
- Category
- electronics
products / #118
Price, Stracke and Hartmann
USD498.19
In stock
★ 2.7 (2666)
Ergonomic Keyboard made with Bronze for all-day inborn support
curl -sS \
"https://example-data.com/api/v1/products/118" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/118"
);
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/118"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/118"
)
product = res.json() {
"id": 118,
"sku": "G98G1CYYFC",
"name": "Fantastic Plastic Pants",
"slug": "fantastic-plastic-pants-118",
"description": "Ergonomic Keyboard made with Bronze for all-day inborn support",
"category": "electronics",
"brand": "Price, Stracke and Hartmann",
"price": 498.19,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 498,
"rating": 2.7,
"ratingCount": 2666,
"imageUrl": "https://picsum.photos/seed/product-118/800/800",
"createdAt": "2024-08-20T15:08:07.527Z",
"updatedAt": "2025-07-18T22:41:18.380Z"
}