example-data.com

products / #65

Fantastic Marble Car

Fantastic Marble Car

Considine Group

USD251.79 USD216.97

Out of stock

★ 3.6 (1435)

Stylish Towels designed to make you stand out with warped looks

Category
books

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/65"
)
product = res.json()
{
  "id": 65,
  "sku": "B4XFNJMOQS",
  "name": "Fantastic Marble Car",
  "slug": "fantastic-marble-car-65",
  "description": "Stylish Towels designed to make you stand out with warped looks",
  "category": "books",
  "brand": "Considine Group",
  "price": 251.79,
  "salePrice": 216.97,
  "currency": "USD",
  "inStock": false,
  "stockCount": 0,
  "rating": 3.6,
  "ratingCount": 1435,
  "imageUrl": "https://picsum.photos/seed/product-65/800/800",
  "createdAt": "2025-09-02T01:31:02.632Z",
  "updatedAt": "2025-09-06T17:52:25.354Z"
}
Draftbit