Fantastic Wooden Salad
Hoeger Inc
USD67.29
In stock
★ 4.4 (3208)
Discover the only new Chair with an exciting mix of Metal ingredients
- Category
- sports
Overview
products / #9
Hoeger Inc
USD67.29
In stock
★ 4.4 (3208)
Discover the only new Chair with an exciting mix of Metal ingredients
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/9" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/9" ); 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/9"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/9"
)
product = res.json() Response
{
"id": 9,
"sku": "H4UJTHI01Q",
"name": "Fantastic Wooden Salad",
"slug": "fantastic-wooden-salad-9",
"description": "Discover the only new Chair with an exciting mix of Metal ingredients",
"category": "sports",
"brand": "Hoeger Inc",
"price": 67.29,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 45,
"rating": 4.4,
"ratingCount": 3208,
"imageUrl": "https://picsum.photos/seed/product-9/800/800",
"createdAt": "2025-05-04T06:46:29.393Z",
"updatedAt": "2026-05-02T21:25:13.871Z"
}