Incredible Steel Salad
Wilkinson - Torp
USD413.75 USD300.90
In stock
★ 1.7 (2035)
Our tangy-inspired Mouse brings a taste of luxury to your ragged lifestyle
- Category
- clothing
products / #72
Wilkinson - Torp
USD413.75 USD300.90
In stock
★ 1.7 (2035)
Our tangy-inspired Mouse brings a taste of luxury to your ragged lifestyle
curl -sS \
"https://example-data.com/api/v1/products/72" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/72"
);
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/72"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/72"
)
product = res.json() {
"id": 72,
"sku": "BWVVK5N561",
"name": "Incredible Steel Salad",
"slug": "incredible-steel-salad-72",
"description": "Our tangy-inspired Mouse brings a taste of luxury to your ragged lifestyle",
"category": "clothing",
"brand": "Wilkinson - Torp",
"price": 413.75,
"salePrice": 300.9,
"currency": "USD",
"inStock": true,
"stockCount": 231,
"rating": 1.7,
"ratingCount": 2035,
"imageUrl": "https://picsum.photos/seed/product-72/800/800",
"createdAt": "2024-09-11T04:24:17.571Z",
"updatedAt": "2025-01-10T05:33:27.944Z"
}