Recycled Metal Cheese
Murray, Davis and Stark
USD266.79
In stock
★ 1.3 (4436)
Featuring Neptunium-enhanced technology, our Keyboard offers unparalleled red performance
- Category
- clothing
products / #58
Murray, Davis and Stark
USD266.79
In stock
★ 1.3 (4436)
Featuring Neptunium-enhanced technology, our Keyboard offers unparalleled red performance
curl -sS \
"https://example-data.com/api/v1/products/58" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/58"
);
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/58"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/58"
)
product = res.json() {
"id": 58,
"sku": "W58U3HZ6OW",
"name": "Recycled Metal Cheese",
"slug": "recycled-metal-cheese-58",
"description": "Featuring Neptunium-enhanced technology, our Keyboard offers unparalleled red performance",
"category": "clothing",
"brand": "Murray, Davis and Stark",
"price": 266.79,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 244,
"rating": 1.3,
"ratingCount": 4436,
"imageUrl": "https://picsum.photos/seed/product-58/800/800",
"createdAt": "2025-03-23T06:24:58.405Z",
"updatedAt": "2026-03-26T23:14:32.922Z"
}