Unbranded Plastic Chicken
Daniel - D'Amore
USD376.25
In stock
★ 2.6 (2100)
Professional-grade Ball perfect for dependable training and recreational use
- Category
- home
products / #155
Daniel - D'Amore
USD376.25
In stock
★ 2.6 (2100)
Professional-grade Ball perfect for dependable training and recreational use
curl -sS \
"https://example-data.com/api/v1/products/155" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/155"
);
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/155"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/155"
)
product = res.json() {
"id": 155,
"sku": "U5BA0Y5FIZ",
"name": "Unbranded Plastic Chicken",
"slug": "unbranded-plastic-chicken-155",
"description": "Professional-grade Ball perfect for dependable training and recreational use",
"category": "home",
"brand": "Daniel - D'Amore",
"price": 376.25,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 345,
"rating": 2.6,
"ratingCount": 2100,
"imageUrl": "https://picsum.photos/seed/product-155/800/800",
"createdAt": "2024-11-27T14:04:04.938Z",
"updatedAt": "2025-07-21T13:22:22.914Z"
}