example-data.com

products / #50

Licensed Bronze Soap

Licensed Bronze Soap

Stoltenberg Group

USD283.59

In stock

★ 4.9 (2822)

Our elephant-friendly Shoes ensures naughty comfort for your pets

Category
sports

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/50"
)
product = res.json()
{
  "id": 50,
  "sku": "XEZBHKG0WX",
  "name": "Licensed Bronze Soap",
  "slug": "licensed-bronze-soap-50",
  "description": "Our elephant-friendly Shoes ensures naughty comfort for your pets",
  "category": "sports",
  "brand": "Stoltenberg Group",
  "price": 283.59,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 336,
  "rating": 4.9,
  "ratingCount": 2822,
  "imageUrl": "https://picsum.photos/seed/product-50/800/800",
  "createdAt": "2025-04-04T04:23:33.683Z",
  "updatedAt": "2026-05-15T09:05:02.116Z"
}
Draftbit