Fresh Plastic Computer
Rice, Lowe and Franecki
USD460.89
In stock
★ 4.0 (864)
The Paula Chicken is the latest in a series of blank products from Denesik Group
- Category
- beauty
products / #119
Rice, Lowe and Franecki
USD460.89
In stock
★ 4.0 (864)
The Paula Chicken is the latest in a series of blank products from Denesik Group
curl -sS \
"https://example-data.com/api/v1/products/119" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/119"
);
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/119"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/119"
)
product = res.json() {
"id": 119,
"sku": "DJBHVW4TAK",
"name": "Fresh Plastic Computer",
"slug": "fresh-plastic-computer-119",
"description": "The Paula Chicken is the latest in a series of blank products from Denesik Group",
"category": "beauty",
"brand": "Rice, Lowe and Franecki",
"price": 460.89,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 50,
"rating": 4,
"ratingCount": 864,
"imageUrl": "https://picsum.photos/seed/product-119/800/800",
"createdAt": "2025-10-25T21:25:06.013Z",
"updatedAt": "2026-03-12T06:04:30.725Z"
}