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
Overview
products / #30
Dare - Dicki
USD486.65
Out of stock
★ 1.3 (2506)
The Compatible attitude-oriented concept Ball offers reliable performance and crushing design
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/30" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/30" ); 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/30"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/30"
)
product = res.json() Response
{
"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"
}