Small Metal Soap
O'Conner, Bode and Yost
USD363.30
In stock
★ 4.5 (3074)
New lime Computer with ergonomic design for unlawful comfort
- Category
- kitchen
Overview
products / #157
O'Conner, Bode and Yost
USD363.30
In stock
★ 4.5 (3074)
New lime Computer with ergonomic design for unlawful comfort
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/157" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/157" ); 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/157"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/157"
)
product = res.json() Response
{
"id": 157,
"sku": "VUXZ0Q690U",
"name": "Small Metal Soap",
"slug": "small-metal-soap-157",
"description": "New lime Computer with ergonomic design for unlawful comfort",
"category": "kitchen",
"brand": "O'Conner, Bode and Yost",
"price": 363.3,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 21,
"rating": 4.5,
"ratingCount": 3074,
"imageUrl": "https://picsum.photos/seed/product-157/800/800",
"createdAt": "2024-08-11T13:08:39.990Z",
"updatedAt": "2026-02-02T19:40:34.772Z"
}