Intelligent Ceramic Pants
Zulauf, Lowe and Bergnaum
USD376.95 USD315.21
In stock
★ 4.5 (374)
New Tuna model with 82 GB RAM, 76 GB storage, and tattered features
- Category
- home
products / #78
Zulauf, Lowe and Bergnaum
USD376.95 USD315.21
In stock
★ 4.5 (374)
New Tuna model with 82 GB RAM, 76 GB storage, and tattered features
curl -sS \
"https://example-data.com/api/v1/products/78" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/78"
);
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/78"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/78"
)
product = res.json() {
"id": 78,
"sku": "5E2C7ESZE7",
"name": "Intelligent Ceramic Pants",
"slug": "intelligent-ceramic-pants-78",
"description": "New Tuna model with 82 GB RAM, 76 GB storage, and tattered features",
"category": "home",
"brand": "Zulauf, Lowe and Bergnaum",
"price": 376.95,
"salePrice": 315.21,
"currency": "USD",
"inStock": true,
"stockCount": 223,
"rating": 4.5,
"ratingCount": 374,
"imageUrl": "https://picsum.photos/seed/product-78/800/800",
"createdAt": "2025-03-11T21:14:58.218Z",
"updatedAt": "2026-05-13T22:15:04.758Z"
}