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
Overview
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
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/112" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/112" ); 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/112"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/112"
)
product = res.json() Response
{
"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"
}