Awesome Metal Chips
Wuckert Inc
USD74.89 USD63.03
In stock
★ 4.2 (3298)
New Ball model with 87 GB RAM, 813 GB storage, and definite features
- Category
- clothing
products / #112
Wuckert Inc
USD74.89 USD63.03
In stock
★ 4.2 (3298)
New Ball model with 87 GB RAM, 813 GB storage, and definite features
curl -sS \
"https://example-data.com/api/v1/products/112" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/112"
);
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/112"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/112"
)
product = res.json() {
"id": 112,
"sku": "8V4YOXS58G",
"name": "Awesome Metal Chips",
"slug": "awesome-metal-chips-112",
"description": "New Ball model with 87 GB RAM, 813 GB storage, and definite features",
"category": "clothing",
"brand": "Wuckert Inc",
"price": 74.89,
"salePrice": 63.03,
"currency": "USD",
"inStock": true,
"stockCount": 402,
"rating": 4.2,
"ratingCount": 3298,
"imageUrl": "https://picsum.photos/seed/product-112/800/800",
"createdAt": "2024-11-03T13:28:34.951Z",
"updatedAt": "2025-12-26T18:44:16.443Z"
}