Sleek Bamboo Chair
Erdman, Swift and Schuster
USD216.75
In stock
★ 2.3 (950)
Innovative Keyboard featuring deafening technology and Granite construction
- Category
- clothing
Overview
products / #161
Erdman, Swift and Schuster
USD216.75
In stock
★ 2.3 (950)
Innovative Keyboard featuring deafening technology and Granite construction
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/161" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/161" ); 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/161"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/161"
)
product = res.json() Response
{
"id": 161,
"sku": "BPMYI3IZDT",
"name": "Sleek Bamboo Chair",
"slug": "sleek-bamboo-chair-161",
"description": "Innovative Keyboard featuring deafening technology and Granite construction",
"category": "clothing",
"brand": "Erdman, Swift and Schuster",
"price": 216.75,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 115,
"rating": 2.3,
"ratingCount": 950,
"imageUrl": "https://picsum.photos/seed/product-161/800/800",
"createdAt": "2024-08-20T11:36:17.499Z",
"updatedAt": "2026-02-22T21:20:08.775Z"
}