Fantastic Concrete Tuna
Mann - Hettinger
USD452.00
In stock
★ 4.5 (1524)
The red Car combines French Polynesia aesthetics with Copernicium-based durability
- Category
- sports
Overview
products / #11
Mann - Hettinger
USD452.00
In stock
★ 4.5 (1524)
The red Car combines French Polynesia aesthetics with Copernicium-based durability
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/11" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/11" ); 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/11"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/11"
)
product = res.json() Response
{
"id": 11,
"sku": "JZUK1QHEGW",
"name": "Fantastic Concrete Tuna",
"slug": "fantastic-concrete-tuna-11",
"description": "The red Car combines French Polynesia aesthetics with Copernicium-based durability",
"category": "sports",
"brand": "Mann - Hettinger",
"price": 452,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 435,
"rating": 4.5,
"ratingCount": 1524,
"imageUrl": "https://picsum.photos/seed/product-11/800/800",
"createdAt": "2025-05-06T19:49:53.851Z",
"updatedAt": "2025-07-22T22:09:08.302Z"
}