example-data.com

products / #184

Generic Aluminum Shoes

Generic Aluminum Shoes

Raynor, Cummings and Considine

USD352.10

Out of stock

★ 4.9 (4499)

New salmon Fish with ergonomic design for knotty comfort

Category
kitchen

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/184"
)
product = res.json()
{
  "id": 184,
  "sku": "ODGE1UASNH",
  "name": "Generic Aluminum Shoes",
  "slug": "generic-aluminum-shoes-184",
  "description": "New salmon Fish with ergonomic design for knotty comfort",
  "category": "kitchen",
  "brand": "Raynor, Cummings and Considine",
  "price": 352.1,
  "salePrice": null,
  "currency": "USD",
  "inStock": false,
  "stockCount": 0,
  "rating": 4.9,
  "ratingCount": 4499,
  "imageUrl": "https://picsum.photos/seed/product-184/800/800",
  "createdAt": "2025-02-22T16:20:22.262Z",
  "updatedAt": "2026-02-16T14:59:32.639Z"
}
Draftbit