example-data.com

products / #179

Handmade Cotton Sausages

Handmade Cotton Sausages

Haag, Schowalter and Jerde

USD38.49

In stock

★ 3.1 (4370)

The Liliane Pants is the latest in a series of snarling products from Bruen - Goodwin

Category
sports

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/179"
)
product = res.json()
{
  "id": 179,
  "sku": "8K20YLNTN1",
  "name": "Handmade Cotton Sausages",
  "slug": "handmade-cotton-sausages-179",
  "description": "The Liliane Pants is the latest in a series of snarling products from Bruen - Goodwin",
  "category": "sports",
  "brand": "Haag, Schowalter and Jerde",
  "price": 38.49,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 89,
  "rating": 3.1,
  "ratingCount": 4370,
  "imageUrl": "https://picsum.photos/seed/product-179/800/800",
  "createdAt": "2025-04-21T11:42:01.211Z",
  "updatedAt": "2026-01-14T13:01:27.528Z"
}
Draftbit