Handcrafted Plastic Chair
Wehner, Harris and Ullrich
USD309.65
In stock
★ 1.0 (58)
Our bear-friendly Keyboard ensures brilliant comfort for your pets
- Category
- electronics
products / #7
Wehner, Harris and Ullrich
USD309.65
In stock
★ 1.0 (58)
Our bear-friendly Keyboard ensures brilliant comfort for your pets
curl -sS \
"https://example-data.com/api/v1/products/7" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/7"
);
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/7"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/7"
)
product = res.json() {
"id": 7,
"sku": "RFWQ09CJF3",
"name": "Handcrafted Plastic Chair",
"slug": "handcrafted-plastic-chair-7",
"description": "Our bear-friendly Keyboard ensures brilliant comfort for your pets",
"category": "electronics",
"brand": "Wehner, Harris and Ullrich",
"price": 309.65,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 306,
"rating": 1,
"ratingCount": 58,
"imageUrl": "https://picsum.photos/seed/product-7/800/800",
"createdAt": "2025-09-13T15:15:20.506Z",
"updatedAt": "2025-10-08T15:48:43.920Z"
}