Electronic Concrete Bacon
Keebler Inc
USD345.69
In stock
★ 1.2 (2558)
Discover the fond new Bike with an exciting mix of Cotton ingredients
- Category
- home
Overview
products / #98
Keebler Inc
USD345.69
In stock
★ 1.2 (2558)
Discover the fond new Bike with an exciting mix of Cotton ingredients
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/98" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/98" ); 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/98"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/98"
)
product = res.json() Response
{
"id": 98,
"sku": "F82Q2DU0GK",
"name": "Electronic Concrete Bacon",
"slug": "electronic-concrete-bacon-98",
"description": "Discover the fond new Bike with an exciting mix of Cotton ingredients",
"category": "home",
"brand": "Keebler Inc",
"price": 345.69,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 453,
"rating": 1.2,
"ratingCount": 2558,
"imageUrl": "https://picsum.photos/seed/product-98/800/800",
"createdAt": "2024-08-16T06:17:47.845Z",
"updatedAt": "2025-10-21T16:56:25.041Z"
}