example-data.com

products / #161

Sleek Bamboo Chair

Sleek Bamboo Chair

Erdman, Swift and Schuster

USD216.75

In stock

★ 2.3 (950)

Innovative Keyboard featuring deafening technology and Granite construction

Category
clothing

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/161"
)
product = res.json()
{
  "id": 161,
  "sku": "BPMYI3IZDT",
  "name": "Sleek Bamboo Chair",
  "slug": "sleek-bamboo-chair-161",
  "description": "Innovative Keyboard featuring deafening technology and Granite construction",
  "category": "clothing",
  "brand": "Erdman, Swift and Schuster",
  "price": 216.75,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 115,
  "rating": 2.3,
  "ratingCount": 950,
  "imageUrl": "https://picsum.photos/seed/product-161/800/800",
  "createdAt": "2024-08-20T11:36:17.499Z",
  "updatedAt": "2026-02-22T21:20:08.775Z"
}
Draftbit