Intelligent Plastic Table
Russel, Kling and Parisian
USD121.95 USD80.50
Out of stock
★ 4.3 (4953)
New violet Shoes with ergonomic design for decent comfort
- Category
- books
Overview
products / #172
Russel, Kling and Parisian
USD121.95 USD80.50
Out of stock
★ 4.3 (4953)
New violet Shoes with ergonomic design for decent comfort
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/172" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/172" ); 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/172"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/172"
)
product = res.json() Response
{
"id": 172,
"sku": "HG8RQUSWW6",
"name": "Intelligent Plastic Table",
"slug": "intelligent-plastic-table-172",
"description": "New violet Shoes with ergonomic design for decent comfort",
"category": "books",
"brand": "Russel, Kling and Parisian",
"price": 121.95,
"salePrice": 80.5,
"currency": "USD",
"inStock": false,
"stockCount": 0,
"rating": 4.3,
"ratingCount": 4953,
"imageUrl": "https://picsum.photos/seed/product-172/800/800",
"createdAt": "2025-12-16T00:44:40.853Z",
"updatedAt": "2026-05-16T12:35:25.446Z"
}