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
Overview
products / #89
Zieme Inc
USD435.79
In stock
★ 4.6 (2894)
New Gloves model with 99 GB RAM, 194 GB storage, and cuddly features
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/89" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/89" ); const product = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/products.d.ts https://example-data.com/types/products.d.ts
import type { Product } from "./types/products";
const res = await fetch(
"https://example-data.com/api/v1/products/89"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/89"
)
product = res.json() Response
{
"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"
}