Small Plastic Bacon
Wyman and Sons
USD146.30 USD126.54
In stock
★ 2.4 (4147)
Discover the parrot-like agility of our Chicken, perfect for oddball users
- Category
- home
products / #173
Wyman and Sons
USD146.30 USD126.54
In stock
★ 2.4 (4147)
Discover the parrot-like agility of our Chicken, perfect for oddball users
curl -sS \
"https://example-data.com/api/v1/products/173" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/173"
);
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/173"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/173"
)
product = res.json() {
"id": 173,
"sku": "RMP7OWLMPE",
"name": "Small Plastic Bacon",
"slug": "small-plastic-bacon-173",
"description": "Discover the parrot-like agility of our Chicken, perfect for oddball users",
"category": "home",
"brand": "Wyman and Sons",
"price": 146.3,
"salePrice": 126.54,
"currency": "USD",
"inStock": true,
"stockCount": 181,
"rating": 2.4,
"ratingCount": 4147,
"imageUrl": "https://picsum.photos/seed/product-173/800/800",
"createdAt": "2025-07-04T00:01:52.761Z",
"updatedAt": "2025-10-16T03:25:51.438Z"
}