Refined Plastic Pants
Brakus, O'Reilly and Kuhic
USD149.69 USD93.23
In stock
★ 1.8 (288)
Modern Shoes designed with Gold for ambitious performance
- Category
- kitchen
products / #170
Brakus, O'Reilly and Kuhic
USD149.69 USD93.23
In stock
★ 1.8 (288)
Modern Shoes designed with Gold for ambitious performance
curl -sS \
"https://example-data.com/api/v1/products/170" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/170"
);
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/170"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/170"
)
product = res.json() {
"id": 170,
"sku": "Y2TOIIY7ZM",
"name": "Refined Plastic Pants",
"slug": "refined-plastic-pants-170",
"description": "Modern Shoes designed with Gold for ambitious performance",
"category": "kitchen",
"brand": "Brakus, O'Reilly and Kuhic",
"price": 149.69,
"salePrice": 93.23,
"currency": "USD",
"inStock": true,
"stockCount": 335,
"rating": 1.8,
"ratingCount": 288,
"imageUrl": "https://picsum.photos/seed/product-170/800/800",
"createdAt": "2024-12-14T18:42:57.473Z",
"updatedAt": "2025-12-12T18:02:25.185Z"
}