example-data.com

products / #134

Sleek Marble Bike

Sleek Marble Bike

Bernhard, Botsford and Klein

USD246.79 USD196.49

In stock

★ 5.0 (3164)

New Bike model with 32 GB RAM, 34 GB storage, and proper features

Category
clothing

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/134"
)
product = res.json()
{
  "id": 134,
  "sku": "NEETWWGMIX",
  "name": "Sleek Marble Bike",
  "slug": "sleek-marble-bike-134",
  "description": "New Bike model with 32 GB RAM, 34 GB storage, and proper features",
  "category": "clothing",
  "brand": "Bernhard, Botsford and Klein",
  "price": 246.79,
  "salePrice": 196.49,
  "currency": "USD",
  "inStock": true,
  "stockCount": 444,
  "rating": 5,
  "ratingCount": 3164,
  "imageUrl": "https://picsum.photos/seed/product-134/800/800",
  "createdAt": "2024-07-29T08:11:41.996Z",
  "updatedAt": "2025-05-22T14:11:57.365Z"
}
Draftbit