example-data.com

products / #76

Elegant Silk Fish

Elegant Silk Fish

Rice - Altenwerth

USD140.00 USD86.18

Out of stock

★ 3.9 (4536)

The Allan Mouse is the latest in a series of poor products from Murray, Keebler and Ortiz

Category
beauty

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/76"
)
product = res.json()
{
  "id": 76,
  "sku": "0HQPJTQCU2",
  "name": "Elegant Silk Fish",
  "slug": "elegant-silk-fish-76",
  "description": "The Allan Mouse is the latest in a series of poor products from Murray, Keebler and Ortiz",
  "category": "beauty",
  "brand": "Rice - Altenwerth",
  "price": 140,
  "salePrice": 86.18,
  "currency": "USD",
  "inStock": false,
  "stockCount": 0,
  "rating": 3.9,
  "ratingCount": 4536,
  "imageUrl": "https://picsum.photos/seed/product-76/800/800",
  "createdAt": "2024-12-13T21:00:24.442Z",
  "updatedAt": "2025-07-27T10:47:31.647Z"
}
Draftbit