Oriental Aluminum Salad
Bradtke - Bailey
USD8.09 USD6.81
In stock
★ 1.1 (930)
Discover the stingy new Chips with an exciting mix of Metal ingredients
- Category
- home
products / #125
Bradtke - Bailey
USD8.09 USD6.81
In stock
★ 1.1 (930)
Discover the stingy new Chips with an exciting mix of Metal ingredients
curl -sS \
"https://example-data.com/api/v1/products/125" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/125"
);
const product = await res.json();import type { Product } from "https://example-data.com/types/products.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/products/125"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/125"
)
product = res.json() {
"id": 125,
"sku": "ODD3SB6FEZ",
"name": "Oriental Aluminum Salad",
"slug": "oriental-aluminum-salad-125",
"description": "Discover the stingy new Chips with an exciting mix of Metal ingredients",
"category": "home",
"brand": "Bradtke - Bailey",
"price": 8.09,
"salePrice": 6.81,
"currency": "USD",
"inStock": true,
"stockCount": 192,
"rating": 1.1,
"ratingCount": 930,
"imageUrl": "https://picsum.photos/seed/product-125/800/800",
"createdAt": "2024-07-01T01:00:06.746Z",
"updatedAt": "2025-07-08T22:44:08.546Z"
}