Frozen Plastic Bacon
Morissette - Cronin
USD330.99
In stock
★ 3.0 (1937)
New orchid Shirt with ergonomic design for doting comfort
- Category
- kitchen
Overview
products / #99
Morissette - Cronin
USD330.99
In stock
★ 3.0 (1937)
New orchid Shirt with ergonomic design for doting comfort
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/99" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/99" ); 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/99"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/99"
)
product = res.json() Response
{
"id": 99,
"sku": "I0S6CEZTIF",
"name": "Frozen Plastic Bacon",
"slug": "frozen-plastic-bacon-99",
"description": "New orchid Shirt with ergonomic design for doting comfort",
"category": "kitchen",
"brand": "Morissette - Cronin",
"price": 330.99,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 247,
"rating": 3,
"ratingCount": 1937,
"imageUrl": "https://picsum.photos/seed/product-99/800/800",
"createdAt": "2024-12-24T07:38:08.160Z",
"updatedAt": "2025-10-13T23:30:36.672Z"
}