example-data.com

products / #69

Incredible Marble Tuna

Incredible Marble Tuna

Anderson - Dare

USD245.99

In stock

★ 2.0 (4680)

Savor the zesty essence in our Bacon, designed for negligible culinary adventures

Category
beauty

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/69"
)
product = res.json()
{
  "id": 69,
  "sku": "S0MC3ASXIC",
  "name": "Incredible Marble Tuna",
  "slug": "incredible-marble-tuna-69",
  "description": "Savor the zesty essence in our Bacon, designed for negligible culinary adventures",
  "category": "beauty",
  "brand": "Anderson - Dare",
  "price": 245.99,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 466,
  "rating": 2,
  "ratingCount": 4680,
  "imageUrl": "https://picsum.photos/seed/product-69/800/800",
  "createdAt": "2025-11-06T22:25:11.985Z",
  "updatedAt": "2026-04-03T03:35:10.224Z"
}
Draftbit