example-data.com

products / #153

Oriental Bamboo Bike

Oriental Bamboo Bike

Schmitt - Abshire

USD314.85 USD223.13

In stock

★ 4.2 (2174)

Stylish Car designed to make you stand out with winding looks

Category
sports

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/153"
)
product = res.json()
{
  "id": 153,
  "sku": "TMDRV6KGFC",
  "name": "Oriental Bamboo Bike",
  "slug": "oriental-bamboo-bike-153",
  "description": "Stylish Car designed to make you stand out with winding looks",
  "category": "sports",
  "brand": "Schmitt - Abshire",
  "price": 314.85,
  "salePrice": 223.13,
  "currency": "USD",
  "inStock": true,
  "stockCount": 283,
  "rating": 4.2,
  "ratingCount": 2174,
  "imageUrl": "https://picsum.photos/seed/product-153/800/800",
  "createdAt": "2026-02-23T01:28:35.455Z",
  "updatedAt": "2026-03-21T21:55:57.362Z"
}
Draftbit