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
Overview
products / #70
Mohr and Sons
USD403.39
In stock
★ 1.4 (1683)
Professional-grade Keyboard perfect for smart training and recreational use
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/70" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/70" ); 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/70"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/70"
)
product = res.json() Response
{
"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"
}