example-data.com

products / #89

Frozen Rubber Table

Frozen Rubber Table

Zieme Inc

USD435.79

In stock

★ 4.6 (2894)

New Gloves model with 99 GB RAM, 194 GB storage, and cuddly features

Category
toys

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/89"
)
product = res.json()
{
  "id": 89,
  "sku": "4I50L2KH8Q",
  "name": "Frozen Rubber Table",
  "slug": "frozen-rubber-table-89",
  "description": "New Gloves model with 99 GB RAM, 194 GB storage, and cuddly features",
  "category": "toys",
  "brand": "Zieme Inc",
  "price": 435.79,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 111,
  "rating": 4.6,
  "ratingCount": 2894,
  "imageUrl": "https://picsum.photos/seed/product-89/800/800",
  "createdAt": "2025-08-02T10:35:21.881Z",
  "updatedAt": "2026-04-05T00:17:37.492Z"
}
Draftbit