Unbranded Metal Bacon
Kertzmann, Feil and Waters
USD185.15
In stock
★ 1.8 (4120)
The fuchsia Bike combines Bulgaria aesthetics with Copernicium-based durability
- Category
- kitchen
products / #83
Kertzmann, Feil and Waters
USD185.15
In stock
★ 1.8 (4120)
The fuchsia Bike combines Bulgaria aesthetics with Copernicium-based durability
curl -sS \
"https://example-data.com/api/v1/products/83" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/83"
);
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/83"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/83"
)
product = res.json() {
"id": 83,
"sku": "GVAFR1VM4S",
"name": "Unbranded Metal Bacon",
"slug": "unbranded-metal-bacon-83",
"description": "The fuchsia Bike combines Bulgaria aesthetics with Copernicium-based durability",
"category": "kitchen",
"brand": "Kertzmann, Feil and Waters",
"price": 185.15,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 100,
"rating": 1.8,
"ratingCount": 4120,
"imageUrl": "https://picsum.photos/seed/product-83/800/800",
"createdAt": "2025-07-25T23:56:24.654Z",
"updatedAt": "2026-01-21T18:42:34.357Z"
}