Bespoke Ceramic Gloves
Runolfsson Inc
USD55.89
In stock
★ 1.4 (407)
Experience the azure brilliance of our Salad, perfect for sparse environments
- Category
- books
products / #164
Runolfsson Inc
USD55.89
In stock
★ 1.4 (407)
Experience the azure brilliance of our Salad, perfect for sparse environments
curl -sS \
"https://example-data.com/api/v1/products/164" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/164"
);
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/164"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/164"
)
product = res.json() {
"id": 164,
"sku": "Z00T7JAWY0",
"name": "Bespoke Ceramic Gloves",
"slug": "bespoke-ceramic-gloves-164",
"description": "Experience the azure brilliance of our Salad, perfect for sparse environments",
"category": "books",
"brand": "Runolfsson Inc",
"price": 55.89,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 438,
"rating": 1.4,
"ratingCount": 407,
"imageUrl": "https://picsum.photos/seed/product-164/800/800",
"createdAt": "2024-09-04T21:03:20.871Z",
"updatedAt": "2025-12-07T06:59:10.616Z"
}