example-data.com

products / #16

Tasty Wooden Soap

Tasty Wooden Soap

Dooley, Upton and Goyette

USD372.69

In stock

★ 4.1 (3416)

Featuring Neodymium-enhanced technology, our Chips offers unparalleled tender performance

Category
beauty

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/16"
)
product = res.json()
{
  "id": 16,
  "sku": "15YLVT9094",
  "name": "Tasty Wooden Soap",
  "slug": "tasty-wooden-soap-16",
  "description": "Featuring Neodymium-enhanced technology, our Chips offers unparalleled tender performance",
  "category": "beauty",
  "brand": "Dooley, Upton and Goyette",
  "price": 372.69,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 389,
  "rating": 4.1,
  "ratingCount": 3416,
  "imageUrl": "https://picsum.photos/seed/product-16/800/800",
  "createdAt": "2025-10-28T12:23:31.307Z",
  "updatedAt": "2026-01-23T04:41:08.467Z"
}
Draftbit