example-data.com

products / #106

Modern Bamboo Sausages

Modern Bamboo Sausages

Rice LLC

USD166.89

In stock

★ 1.4 (1438)

Savor the rich essence in our Pants, designed for remorseful culinary adventures

Category
clothing

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/106"
)
product = res.json()
{
  "id": 106,
  "sku": "Z7KJ7KIHMG",
  "name": "Modern Bamboo Sausages",
  "slug": "modern-bamboo-sausages-106",
  "description": "Savor the rich essence in our Pants, designed for remorseful culinary adventures",
  "category": "clothing",
  "brand": "Rice LLC",
  "price": 166.89,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 121,
  "rating": 1.4,
  "ratingCount": 1438,
  "imageUrl": "https://picsum.photos/seed/product-106/800/800",
  "createdAt": "2026-04-26T00:06:19.644Z",
  "updatedAt": "2026-05-15T06:31:48.725Z"
}
Draftbit