example-data.com

products / #77

Tasty Marble Bacon

Tasty Marble Bacon

Greenholt Inc

USD48.59

In stock

★ 3.7 (699)

Ergonomic Car made with Marble for all-day concrete support

Category
electronics

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/77"
)
product = res.json()
{
  "id": 77,
  "sku": "RKQP2QF2I3",
  "name": "Tasty Marble Bacon",
  "slug": "tasty-marble-bacon-77",
  "description": "Ergonomic Car made with Marble for all-day concrete support",
  "category": "electronics",
  "brand": "Greenholt Inc",
  "price": 48.59,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 461,
  "rating": 3.7,
  "ratingCount": 699,
  "imageUrl": "https://picsum.photos/seed/product-77/800/800",
  "createdAt": "2024-06-03T20:44:55.785Z",
  "updatedAt": "2026-03-20T09:24:29.564Z"
}
Draftbit