example-data.com

products / #18

Elegant Cotton Chicken

Elegant Cotton Chicken

Huel, Ullrich and Jakubowski

USD17.70

In stock

★ 3.0 (4531)

Discover the darling new Shirt with an exciting mix of Metal ingredients

Category
home

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/18"
)
product = res.json()
{
  "id": 18,
  "sku": "JP8CULDUCL",
  "name": "Elegant Cotton Chicken",
  "slug": "elegant-cotton-chicken-18",
  "description": "Discover the darling new Shirt with an exciting mix of Metal ingredients",
  "category": "home",
  "brand": "Huel, Ullrich and Jakubowski",
  "price": 17.7,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 139,
  "rating": 3,
  "ratingCount": 4531,
  "imageUrl": "https://picsum.photos/seed/product-18/800/800",
  "createdAt": "2024-12-22T14:09:40.280Z",
  "updatedAt": "2025-08-10T15:31:28.045Z"
}
Draftbit