Luxurious Wooden Table
Runte LLC
USD195.98
In stock
★ 2.9 (80)
The Litzy Pants is the latest in a series of both products from Kuphal LLC
- Category
- books
Overview
products / #190
Runte LLC
USD195.98
In stock
★ 2.9 (80)
The Litzy Pants is the latest in a series of both products from Kuphal LLC
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/190" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/190" ); 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/190"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/190"
)
product = res.json() Response
{
"id": 190,
"sku": "T9X7WHV937",
"name": "Luxurious Wooden Table",
"slug": "luxurious-wooden-table-190",
"description": "The Litzy Pants is the latest in a series of both products from Kuphal LLC",
"category": "books",
"brand": "Runte LLC",
"price": 195.98,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 225,
"rating": 2.9,
"ratingCount": 80,
"imageUrl": "https://picsum.photos/seed/product-190/800/800",
"createdAt": "2025-12-03T13:36:56.322Z",
"updatedAt": "2025-12-20T04:27:48.098Z"
}