Tasty Steel Chair
Dare - Dicki
USD486.65
Out of stock
★ 1.3 (2506)
The Compatible attitude-oriented concept Ball offers reliable performance and crushing design
- Category
- books
products / #30
Dare - Dicki
USD486.65
Out of stock
★ 1.3 (2506)
The Compatible attitude-oriented concept Ball offers reliable performance and crushing design
curl -sS \
"https://example-data.com/api/v1/products/30" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/30"
);
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/30"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/30"
)
product = res.json() {
"id": 30,
"sku": "1TLE7RHBOH",
"name": "Tasty Steel Chair",
"slug": "tasty-steel-chair-30",
"description": "The Compatible attitude-oriented concept Ball offers reliable performance and crushing design",
"category": "books",
"brand": "Dare - Dicki",
"price": 486.65,
"salePrice": null,
"currency": "USD",
"inStock": false,
"stockCount": 0,
"rating": 1.3,
"ratingCount": 2506,
"imageUrl": "https://picsum.photos/seed/product-30/800/800",
"createdAt": "2025-02-09T13:32:35.280Z",
"updatedAt": "2025-11-03T06:05:58.955Z"
}