Fresh Marble Car
Lockman Inc
USD486.29 USD398.84
In stock
★ 1.6 (4644)
The Betty Salad is the latest in a series of husky products from Predovic, Leannon and Volkman
- Category
- sports
products / #185
Lockman Inc
USD486.29 USD398.84
In stock
★ 1.6 (4644)
The Betty Salad is the latest in a series of husky products from Predovic, Leannon and Volkman
curl -sS \
"https://example-data.com/api/v1/products/185" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/185"
);
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/185"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/185"
)
product = res.json() {
"id": 185,
"sku": "JOZNO8VGR5",
"name": "Fresh Marble Car",
"slug": "fresh-marble-car-185",
"description": "The Betty Salad is the latest in a series of husky products from Predovic, Leannon and Volkman",
"category": "sports",
"brand": "Lockman Inc",
"price": 486.29,
"salePrice": 398.84,
"currency": "USD",
"inStock": true,
"stockCount": 444,
"rating": 1.6,
"ratingCount": 4644,
"imageUrl": "https://picsum.photos/seed/product-185/800/800",
"createdAt": "2025-03-12T09:01:18.511Z",
"updatedAt": "2025-10-18T04:42:01.970Z"
}