Soft Bronze Hat
Nader, Friesen and Cole
USD23.15
In stock
★ 3.1 (2984)
Stylish Car designed to make you stand out with next looks
- Category
- toys
Overview
products / #3
Nader, Friesen and Cole
USD23.15
In stock
★ 3.1 (2984)
Stylish Car designed to make you stand out with next looks
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/3" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/3" ); 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/3"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/3"
)
product = res.json() Response
{
"id": 3,
"sku": "ODZNZ6SANI",
"name": "Soft Bronze Hat",
"slug": "soft-bronze-hat-3",
"description": "Stylish Car designed to make you stand out with next looks",
"category": "toys",
"brand": "Nader, Friesen and Cole",
"price": 23.15,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 463,
"rating": 3.1,
"ratingCount": 2984,
"imageUrl": "https://picsum.photos/seed/product-3/800/800",
"createdAt": "2025-03-29T04:01:38.479Z",
"updatedAt": "2025-05-13T19:24:51.075Z"
}