example-data.com

products / #11

Fantastic Concrete Tuna

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

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/products/11" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/products/11"
);
const product = await res.json();
import type { Product } from "https://example-data.com/types/products.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/products/11"
);
const product = (await res.json()) as Product;
import requests

res = requests.get(
    "https://example-data.com/api/v1/products/11"
)
product = res.json()
{
  "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"
}
Draftbit