example-data.com

products / #74

Licensed Granite Chair

Licensed Granite Chair

Wilderman - Huel

USD464.85

In stock

★ 3.8 (909)

The maroon Table combines Aruba aesthetics with Astatine-based durability

Category
kitchen

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/74"
)
product = res.json()
{
  "id": 74,
  "sku": "B3O0P7MIZ5",
  "name": "Licensed Granite Chair",
  "slug": "licensed-granite-chair-74",
  "description": "The maroon Table combines Aruba aesthetics with Astatine-based durability",
  "category": "kitchen",
  "brand": "Wilderman - Huel",
  "price": 464.85,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 254,
  "rating": 3.8,
  "ratingCount": 909,
  "imageUrl": "https://picsum.photos/seed/product-74/800/800",
  "createdAt": "2025-04-22T03:19:06.235Z",
  "updatedAt": "2025-07-21T20:15:55.511Z"
}
Draftbit