example-data.com

products / #3

Soft Bronze Hat

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

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/3"
)
product = res.json()
{
  "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"
}
Draftbit