Rustic Ceramic Bacon
Hyatt - Bednar
USD224.39
In stock
★ 3.6 (4983)
The Triple-buffered regional access Chicken offers reliable performance and vast design
- Category
- electronics
products / #108
Hyatt - Bednar
USD224.39
In stock
★ 3.6 (4983)
The Triple-buffered regional access Chicken offers reliable performance and vast design
curl -sS \
"https://example-data.com/api/v1/products/108" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/108"
);
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/108"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/108"
)
product = res.json() {
"id": 108,
"sku": "6UMTY8SQ51",
"name": "Rustic Ceramic Bacon",
"slug": "rustic-ceramic-bacon-108",
"description": "The Triple-buffered regional access Chicken offers reliable performance and vast design",
"category": "electronics",
"brand": "Hyatt - Bednar",
"price": 224.39,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 449,
"rating": 3.6,
"ratingCount": 4983,
"imageUrl": "https://picsum.photos/seed/product-108/800/800",
"createdAt": "2024-07-20T07:46:46.452Z",
"updatedAt": "2024-09-03T08:55:32.376Z"
}