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
Overview
products / #164
Runolfsson Inc
USD55.89
In stock
★ 1.4 (407)
Experience the azure brilliance of our Salad, perfect for sparse environments
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/164" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/164" ); 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/164"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/164"
)
product = res.json() Response
{
"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"
}