example-data.com

products / #46

Licensed Marble Car

Licensed Marble Car

Hudson, Reinger and Will

USD446.65

In stock

★ 3.9 (2617)

Featuring Gold-enhanced technology, our Mouse offers unparalleled difficult performance

Category
beauty

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/46"
)
product = res.json()
{
  "id": 46,
  "sku": "JY2JRUI62G",
  "name": "Licensed Marble Car",
  "slug": "licensed-marble-car-46",
  "description": "Featuring Gold-enhanced technology, our Mouse offers unparalleled difficult performance",
  "category": "beauty",
  "brand": "Hudson, Reinger and Will",
  "price": 446.65,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 440,
  "rating": 3.9,
  "ratingCount": 2617,
  "imageUrl": "https://picsum.photos/seed/product-46/800/800",
  "createdAt": "2025-12-21T00:01:19.826Z",
  "updatedAt": "2026-01-29T11:20:43.277Z"
}
Draftbit