Generic Aluminum Shoes
Raynor, Cummings and Considine
USD352.10
Out of stock
★ 4.9 (4499)
New salmon Fish with ergonomic design for knotty comfort
- Category
- kitchen
Overview
products / #184
Raynor, Cummings and Considine
USD352.10
Out of stock
★ 4.9 (4499)
New salmon Fish with ergonomic design for knotty comfort
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/184" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/184" ); 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/184"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/184"
)
product = res.json() Response
{
"id": 184,
"sku": "ODGE1UASNH",
"name": "Generic Aluminum Shoes",
"slug": "generic-aluminum-shoes-184",
"description": "New salmon Fish with ergonomic design for knotty comfort",
"category": "kitchen",
"brand": "Raynor, Cummings and Considine",
"price": 352.1,
"salePrice": null,
"currency": "USD",
"inStock": false,
"stockCount": 0,
"rating": 4.9,
"ratingCount": 4499,
"imageUrl": "https://picsum.photos/seed/product-184/800/800",
"createdAt": "2025-02-22T16:20:22.262Z",
"updatedAt": "2026-02-16T14:59:32.639Z"
}