example-data.com

products / #56

Fantastic Wooden Chicken

Fantastic Wooden Chicken

Fahey - Haley

USD38.39

Out of stock

★ 1.4 (2864)

Stylish Chicken designed to make you stand out with hidden looks

Category
kitchen

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/products/56" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/products/56"
);
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/56"
);
const product = (await res.json()) as Product;
import requests

res = requests.get(
    "https://example-data.com/api/v1/products/56"
)
product = res.json()
{
  "id": 56,
  "sku": "QOSJEYM2QV",
  "name": "Fantastic Wooden Chicken",
  "slug": "fantastic-wooden-chicken-56",
  "description": "Stylish Chicken designed to make you stand out with hidden looks",
  "category": "kitchen",
  "brand": "Fahey - Haley",
  "price": 38.39,
  "salePrice": null,
  "currency": "USD",
  "inStock": false,
  "stockCount": 0,
  "rating": 1.4,
  "ratingCount": 2864,
  "imageUrl": "https://picsum.photos/seed/product-56/800/800",
  "createdAt": "2024-06-13T21:59:04.090Z",
  "updatedAt": "2024-06-27T01:00:08.778Z"
}
Draftbit