example-data.com

products / #9

Fantastic Wooden Salad

Fantastic Wooden Salad

Hoeger Inc

USD67.29

In stock

★ 4.4 (3208)

Discover the only new Chair with an exciting mix of Metal ingredients

Category
sports

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/9"
)
product = res.json()
{
  "id": 9,
  "sku": "H4UJTHI01Q",
  "name": "Fantastic Wooden Salad",
  "slug": "fantastic-wooden-salad-9",
  "description": "Discover the only new Chair with an exciting mix of Metal ingredients",
  "category": "sports",
  "brand": "Hoeger Inc",
  "price": 67.29,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 45,
  "rating": 4.4,
  "ratingCount": 3208,
  "imageUrl": "https://picsum.photos/seed/product-9/800/800",
  "createdAt": "2025-05-04T06:46:29.393Z",
  "updatedAt": "2026-05-02T21:25:13.871Z"
}
Draftbit