Tasty Granite Chicken
Hegmann - Bode
USD61.69
Out of stock
★ 3.6 (1494)
Bahringer LLC's most advanced Bike technology increases earnest capabilities
- Category
- sports
Overview
products / #183
Hegmann - Bode
USD61.69
Out of stock
★ 3.6 (1494)
Bahringer LLC's most advanced Bike technology increases earnest capabilities
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/183" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/183" ); 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/183"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/183"
)
product = res.json() Response
{
"id": 183,
"sku": "YHU2P6YPXI",
"name": "Tasty Granite Chicken",
"slug": "tasty-granite-chicken-183",
"description": "Bahringer LLC's most advanced Bike technology increases earnest capabilities",
"category": "sports",
"brand": "Hegmann - Bode",
"price": 61.69,
"salePrice": null,
"currency": "USD",
"inStock": false,
"stockCount": 0,
"rating": 3.6,
"ratingCount": 1494,
"imageUrl": "https://picsum.photos/seed/product-183/800/800",
"createdAt": "2025-11-04T01:51:17.446Z",
"updatedAt": "2025-12-12T07:08:56.726Z"
}