Practical Aluminum Tuna
Satterfield - Herman
USD347.69
Out of stock
★ 1.0 (1838)
Featuring Nitrogen-enhanced technology, our Table offers unparalleled dark performance
- Category
- sports
products / #151
Satterfield - Herman
USD347.69
Out of stock
★ 1.0 (1838)
Featuring Nitrogen-enhanced technology, our Table offers unparalleled dark performance
curl -sS \
"https://example-data.com/api/v1/products/151" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/151"
);
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/151"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/151"
)
product = res.json() {
"id": 151,
"sku": "TEOQI0MF64",
"name": "Practical Aluminum Tuna",
"slug": "practical-aluminum-tuna-151",
"description": "Featuring Nitrogen-enhanced technology, our Table offers unparalleled dark performance",
"category": "sports",
"brand": "Satterfield - Herman",
"price": 347.69,
"salePrice": null,
"currency": "USD",
"inStock": false,
"stockCount": 0,
"rating": 1,
"ratingCount": 1838,
"imageUrl": "https://picsum.photos/seed/product-151/800/800",
"createdAt": "2026-03-12T15:15:23.990Z",
"updatedAt": "2026-05-14T00:10:50.880Z"
}