Bespoke Rubber Computer
Breitenberg LLC
USD288.89
In stock
★ 3.5 (3178)
Introducing the Qatar-inspired Gloves, blending unknown style with local craftsmanship
- Category
- clothing
products / #75
Breitenberg LLC
USD288.89
In stock
★ 3.5 (3178)
Introducing the Qatar-inspired Gloves, blending unknown style with local craftsmanship
curl -sS \
"https://example-data.com/api/v1/products/75" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/75"
);
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/75"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/75"
)
product = res.json() {
"id": 75,
"sku": "DR3QCN28Z6",
"name": "Bespoke Rubber Computer",
"slug": "bespoke-rubber-computer-75",
"description": "Introducing the Qatar-inspired Gloves, blending unknown style with local craftsmanship",
"category": "clothing",
"brand": "Breitenberg LLC",
"price": 288.89,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 129,
"rating": 3.5,
"ratingCount": 3178,
"imageUrl": "https://picsum.photos/seed/product-75/800/800",
"createdAt": "2025-04-25T17:23:07.965Z",
"updatedAt": "2025-05-21T11:24:42.204Z"
}