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
Overview
products / #46
Hudson, Reinger and Will
USD446.65
In stock
★ 3.9 (2617)
Featuring Gold-enhanced technology, our Mouse offers unparalleled difficult performance
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/46" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/46" ); const product = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/products.d.ts https://example-data.com/types/products.d.ts
import type { Product } from "./types/products";
const res = await fetch(
"https://example-data.com/api/v1/products/46"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/46"
)
product = res.json() Response
{
"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"
}