example-data.com

products / #19

Refined Plastic Chair

Refined Plastic Chair

Feil, Blick and Considine

USD310.05 USD156.63

In stock

★ 2.3 (1111)

The sleek and zealous Salad comes with silver LED lighting for smart functionality

Category
beauty

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/19"
)
product = res.json()
{
  "id": 19,
  "sku": "1XZXRZGRG7",
  "name": "Refined Plastic Chair",
  "slug": "refined-plastic-chair-19",
  "description": "The sleek and zealous Salad comes with silver LED lighting for smart functionality",
  "category": "beauty",
  "brand": "Feil, Blick and Considine",
  "price": 310.05,
  "salePrice": 156.63,
  "currency": "USD",
  "inStock": true,
  "stockCount": 366,
  "rating": 2.3,
  "ratingCount": 1111,
  "imageUrl": "https://picsum.photos/seed/product-19/800/800",
  "createdAt": "2025-08-12T00:19:07.548Z",
  "updatedAt": "2026-01-26T07:12:58.978Z"
}
Draftbit