Refined Silk Pants
Luettgen and Sons
USD466.09 USD366.76
Out of stock
★ 2.2 (4301)
New Chair model with 8 GB RAM, 806 GB storage, and crowded features
- Category
- electronics
products / #120
Luettgen and Sons
USD466.09 USD366.76
Out of stock
★ 2.2 (4301)
New Chair model with 8 GB RAM, 806 GB storage, and crowded features
curl -sS \
"https://example-data.com/api/v1/products/120" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/120"
);
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/120"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/120"
)
product = res.json() {
"id": 120,
"sku": "KQS4U9LUCX",
"name": "Refined Silk Pants",
"slug": "refined-silk-pants-120",
"description": "New Chair model with 8 GB RAM, 806 GB storage, and crowded features",
"category": "electronics",
"brand": "Luettgen and Sons",
"price": 466.09,
"salePrice": 366.76,
"currency": "USD",
"inStock": false,
"stockCount": 0,
"rating": 2.2,
"ratingCount": 4301,
"imageUrl": "https://picsum.photos/seed/product-120/800/800",
"createdAt": "2025-01-20T10:22:10.569Z",
"updatedAt": "2025-12-26T21:36:31.451Z"
}