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
Overview
products / #58
Murray, Davis and Stark
USD266.79
In stock
★ 1.3 (4436)
Featuring Neptunium-enhanced technology, our Keyboard offers unparalleled red performance
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/58" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/58" ); 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/58"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/58"
)
product = res.json() Response
{
"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"
}