example-data.com

products / #171

Gorgeous Ceramic Tuna

Gorgeous Ceramic Tuna

West, Feeney and Mohr

USD396.99

In stock

★ 1.2 (1231)

Kutch Inc's most advanced Pizza technology increases agreeable capabilities

Category
sports

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/products/171" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/products/171"
);
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/171"
);
const product = (await res.json()) as Product;
import requests

res = requests.get(
    "https://example-data.com/api/v1/products/171"
)
product = res.json()
{
  "id": 171,
  "sku": "47EQDRRPMS",
  "name": "Gorgeous Ceramic Tuna",
  "slug": "gorgeous-ceramic-tuna-171",
  "description": "Kutch Inc's most advanced Pizza technology increases agreeable capabilities",
  "category": "sports",
  "brand": "West, Feeney and Mohr",
  "price": 396.99,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 492,
  "rating": 1.2,
  "ratingCount": 1231,
  "imageUrl": "https://picsum.photos/seed/product-171/800/800",
  "createdAt": "2025-09-16T14:35:45.653Z",
  "updatedAt": "2026-04-17T15:26:51.240Z"
}
Draftbit