Fresh Ceramic Car
Mohr and Sons
USD403.39
In stock
★ 1.4 (1683)
Professional-grade Keyboard perfect for smart training and recreational use
- Category
- toys
products / #70
Mohr and Sons
USD403.39
In stock
★ 1.4 (1683)
Professional-grade Keyboard perfect for smart training and recreational use
curl -sS \
"https://example-data.com/api/v1/products/70" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/70"
);
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/70"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/70"
)
product = res.json() {
"id": 70,
"sku": "85VTAL92RB",
"name": "Fresh Ceramic Car",
"slug": "fresh-ceramic-car-70",
"description": "Professional-grade Keyboard perfect for smart training and recreational use",
"category": "toys",
"brand": "Mohr and Sons",
"price": 403.39,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 55,
"rating": 1.4,
"ratingCount": 1683,
"imageUrl": "https://picsum.photos/seed/product-70/800/800",
"createdAt": "2024-10-14T16:31:34.113Z",
"updatedAt": "2026-04-16T21:51:32.179Z"
}