Fantastic Wooden Bacon
Emard LLC
USD443.29
In stock
★ 2.2 (798)
Ergonomic Car made with Metal for all-day trained support
- Category
- sports
products / #175
Emard LLC
USD443.29
In stock
★ 2.2 (798)
Ergonomic Car made with Metal for all-day trained support
curl -sS \
"https://example-data.com/api/v1/products/175" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/175"
);
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/175"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/175"
)
product = res.json() {
"id": 175,
"sku": "VXNX7EM3AM",
"name": "Fantastic Wooden Bacon",
"slug": "fantastic-wooden-bacon-175",
"description": "Ergonomic Car made with Metal for all-day trained support",
"category": "sports",
"brand": "Emard LLC",
"price": 443.29,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 186,
"rating": 2.2,
"ratingCount": 798,
"imageUrl": "https://picsum.photos/seed/product-175/800/800",
"createdAt": "2025-04-18T07:24:04.842Z",
"updatedAt": "2025-05-28T21:18:00.778Z"
}