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
Overview
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
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/78" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/78" ); 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/78"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/78"
)
product = res.json() Response
{
"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"
}