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