example-data.com

products / #90

Gorgeous Bamboo Chicken

Gorgeous Bamboo Chicken

McCullough - Ebert

USD315.05

In stock

★ 1.3 (3562)

The sleek and lucky Hat comes with indigo LED lighting for smart functionality

Category
beauty

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/90"
)
product = res.json()
{
  "id": 90,
  "sku": "Z0FYDMHQAT",
  "name": "Gorgeous Bamboo Chicken",
  "slug": "gorgeous-bamboo-chicken-90",
  "description": "The sleek and lucky Hat comes with indigo LED lighting for smart functionality",
  "category": "beauty",
  "brand": "McCullough - Ebert",
  "price": 315.05,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 472,
  "rating": 1.3,
  "ratingCount": 3562,
  "imageUrl": "https://picsum.photos/seed/product-90/800/800",
  "createdAt": "2024-07-30T22:11:08.027Z",
  "updatedAt": "2025-11-25T21:15:58.684Z"
}
Draftbit