Fantastic Marble Car
Considine Group
USD251.79 USD216.97
Out of stock
★ 3.6 (1435)
Stylish Towels designed to make you stand out with warped looks
- Category
- books
Overview
products / #65
Considine Group
USD251.79 USD216.97
Out of stock
★ 3.6 (1435)
Stylish Towels designed to make you stand out with warped looks
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/65" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/65" ); 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/65"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/65"
)
product = res.json() Response
{
"id": 65,
"sku": "B4XFNJMOQS",
"name": "Fantastic Marble Car",
"slug": "fantastic-marble-car-65",
"description": "Stylish Towels designed to make you stand out with warped looks",
"category": "books",
"brand": "Considine Group",
"price": 251.79,
"salePrice": 216.97,
"currency": "USD",
"inStock": false,
"stockCount": 0,
"rating": 3.6,
"ratingCount": 1435,
"imageUrl": "https://picsum.photos/seed/product-65/800/800",
"createdAt": "2025-09-02T01:31:02.632Z",
"updatedAt": "2025-09-06T17:52:25.354Z"
}