example-data.com

products / #8

Handcrafted Bamboo Chair

Handcrafted Bamboo Chair

Fisher and Sons

USD225.05

In stock

★ 3.3 (3189)

The Dewitt Bike is the latest in a series of content products from Kessler, Lynch and Feest

Category
clothing

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/8"
)
product = res.json()
{
  "id": 8,
  "sku": "KVAWBOD32I",
  "name": "Handcrafted Bamboo Chair",
  "slug": "handcrafted-bamboo-chair-8",
  "description": "The Dewitt Bike is the latest in a series of content products from Kessler, Lynch and Feest",
  "category": "clothing",
  "brand": "Fisher and Sons",
  "price": 225.05,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 293,
  "rating": 3.3,
  "ratingCount": 3189,
  "imageUrl": "https://picsum.photos/seed/product-8/800/800",
  "createdAt": "2024-12-01T00:24:46.855Z",
  "updatedAt": "2026-04-02T03:47:38.570Z"
}
Draftbit