example-data.com

products / #147

Fantastic Steel Sausages

Fantastic Steel Sausages

Cummerata, Aufderhar and Sipes

USD167.99

In stock

★ 2.1 (4810)

Oriental Gloves designed with Aluminum for knowledgeable performance

Category
sports

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/147"
)
product = res.json()
{
  "id": 147,
  "sku": "4EXPTGWNN6",
  "name": "Fantastic Steel Sausages",
  "slug": "fantastic-steel-sausages-147",
  "description": "Oriental Gloves designed with Aluminum for knowledgeable performance",
  "category": "sports",
  "brand": "Cummerata, Aufderhar and Sipes",
  "price": 167.99,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 388,
  "rating": 2.1,
  "ratingCount": 4810,
  "imageUrl": "https://picsum.photos/seed/product-147/800/800",
  "createdAt": "2024-10-28T18:22:18.271Z",
  "updatedAt": "2026-01-14T18:34:00.370Z"
}
Draftbit