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
Overview
products / #7
Wehner, Harris and Ullrich
USD309.65
In stock
★ 1.0 (58)
Our bear-friendly Keyboard ensures brilliant comfort for your pets
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/7" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/7" ); 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/7"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/7"
)
product = res.json() Response
{
"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"
}