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
Overview
products / #83
Kertzmann, Feil and Waters
USD185.15
In stock
★ 1.8 (4120)
The fuchsia Bike combines Bulgaria aesthetics with Copernicium-based durability
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/83" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/83" ); 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/83"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/83"
)
product = res.json() Response
{
"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"
}