Oriental Cotton Bacon
Predovic, Feil and Leffler
USD426.39
Out of stock
★ 4.3 (3344)
The black Hat combines Jamaica aesthetics with Thorium-based durability
- Category
- toys
Overview
products / #97
Predovic, Feil and Leffler
USD426.39
Out of stock
★ 4.3 (3344)
The black Hat combines Jamaica aesthetics with Thorium-based durability
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/97" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/97" ); 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/97"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/97"
)
product = res.json() Response
{
"id": 97,
"sku": "VWY7D2DDH8",
"name": "Oriental Cotton Bacon",
"slug": "oriental-cotton-bacon-97",
"description": "The black Hat combines Jamaica aesthetics with Thorium-based durability",
"category": "toys",
"brand": "Predovic, Feil and Leffler",
"price": 426.39,
"salePrice": null,
"currency": "USD",
"inStock": false,
"stockCount": 0,
"rating": 4.3,
"ratingCount": 3344,
"imageUrl": "https://picsum.photos/seed/product-97/800/800",
"createdAt": "2024-12-05T01:06:45.313Z",
"updatedAt": "2025-03-02T01:21:43.072Z"
}