example-data.com

products / #43

Handmade Metal Sausages

Handmade Metal Sausages

Stiedemann - Hand

USD246.59

In stock

★ 3.2 (2737)

New Cheese model with 68 GB RAM, 705 GB storage, and noteworthy features

Category
toys

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/43"
)
product = res.json()
{
  "id": 43,
  "sku": "W6S1GM9J6C",
  "name": "Handmade Metal Sausages",
  "slug": "handmade-metal-sausages-43",
  "description": "New Cheese model with 68 GB RAM, 705 GB storage, and noteworthy features",
  "category": "toys",
  "brand": "Stiedemann - Hand",
  "price": 246.59,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 467,
  "rating": 3.2,
  "ratingCount": 2737,
  "imageUrl": "https://picsum.photos/seed/product-43/800/800",
  "createdAt": "2024-05-30T23:48:30.207Z",
  "updatedAt": "2024-11-25T08:45:24.354Z"
}
Draftbit