Sleek Bronze Table
Lang - Runte
USD181.09
In stock
★ 2.9 (3546)
Recycled Table designed with Cotton for shadowy performance
- Category
- beauty
Overview
products / #94
Lang - Runte
USD181.09
In stock
★ 2.9 (3546)
Recycled Table designed with Cotton for shadowy performance
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/94" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/94" ); 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/94"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/94"
)
product = res.json() Response
{
"id": 94,
"sku": "LOCNADDFPJ",
"name": "Sleek Bronze Table",
"slug": "sleek-bronze-table-94",
"description": "Recycled Table designed with Cotton for shadowy performance",
"category": "beauty",
"brand": "Lang - Runte",
"price": 181.09,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 7,
"rating": 2.9,
"ratingCount": 3546,
"imageUrl": "https://picsum.photos/seed/product-94/800/800",
"createdAt": "2025-12-27T16:21:55.799Z",
"updatedAt": "2026-02-27T09:55:37.103Z"
}