Luxurious Ceramic Car
Carroll, Kohler and McDermott
USD335.85
In stock
★ 1.9 (3706)
Discover the yummy new Tuna with an exciting mix of Gold ingredients
- Category
- beauty
Overview
products / #168
Carroll, Kohler and McDermott
USD335.85
In stock
★ 1.9 (3706)
Discover the yummy new Tuna with an exciting mix of Gold ingredients
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/168" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/168" ); 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/168"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/168"
)
product = res.json() Response
{
"id": 168,
"sku": "2K4YH7ZIRV",
"name": "Luxurious Ceramic Car",
"slug": "luxurious-ceramic-car-168",
"description": "Discover the yummy new Tuna with an exciting mix of Gold ingredients",
"category": "beauty",
"brand": "Carroll, Kohler and McDermott",
"price": 335.85,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 309,
"rating": 1.9,
"ratingCount": 3706,
"imageUrl": "https://picsum.photos/seed/product-168/800/800",
"createdAt": "2025-11-22T21:55:13.840Z",
"updatedAt": "2026-04-13T20:50:31.421Z"
}