Refined Plastic Chair
Feil, Blick and Considine
USD310.05 USD156.63
In stock
★ 2.3 (1111)
The sleek and zealous Salad comes with silver LED lighting for smart functionality
- Category
- beauty
Overview
products / #19
Feil, Blick and Considine
USD310.05 USD156.63
In stock
★ 2.3 (1111)
The sleek and zealous Salad comes with silver LED lighting for smart functionality
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/19" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/19" ); 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/19"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/19"
)
product = res.json() Response
{
"id": 19,
"sku": "1XZXRZGRG7",
"name": "Refined Plastic Chair",
"slug": "refined-plastic-chair-19",
"description": "The sleek and zealous Salad comes with silver LED lighting for smart functionality",
"category": "beauty",
"brand": "Feil, Blick and Considine",
"price": 310.05,
"salePrice": 156.63,
"currency": "USD",
"inStock": true,
"stockCount": 366,
"rating": 2.3,
"ratingCount": 1111,
"imageUrl": "https://picsum.photos/seed/product-19/800/800",
"createdAt": "2025-08-12T00:19:07.548Z",
"updatedAt": "2026-01-26T07:12:58.978Z"
}