Fantastic Wooden Bacon
Emard LLC
USD443.29
In stock
★ 2.2 (798)
Ergonomic Car made with Metal for all-day trained support
- Category
- sports
Overview
products / #175
Emard LLC
USD443.29
In stock
★ 2.2 (798)
Ergonomic Car made with Metal for all-day trained support
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/175" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/175" ); 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/175"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/175"
)
product = res.json() Response
{
"id": 175,
"sku": "VXNX7EM3AM",
"name": "Fantastic Wooden Bacon",
"slug": "fantastic-wooden-bacon-175",
"description": "Ergonomic Car made with Metal for all-day trained support",
"category": "sports",
"brand": "Emard LLC",
"price": 443.29,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 186,
"rating": 2.2,
"ratingCount": 798,
"imageUrl": "https://picsum.photos/seed/product-175/800/800",
"createdAt": "2025-04-18T07:24:04.842Z",
"updatedAt": "2025-05-28T21:18:00.778Z"
}