example-data.com

products / #150

Recycled Plastic Tuna

Recycled Plastic Tuna

Nolan, Lubowitz and Reinger

USD295.90

In stock

★ 1.4 (1730)

Savor the fluffy essence in our Ball, designed for ethical culinary adventures

Category
home

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/150"
)
product = res.json()
{
  "id": 150,
  "sku": "ACH9ZVZMQA",
  "name": "Recycled Plastic Tuna",
  "slug": "recycled-plastic-tuna-150",
  "description": "Savor the fluffy essence in our Ball, designed for ethical culinary adventures",
  "category": "home",
  "brand": "Nolan, Lubowitz and Reinger",
  "price": 295.9,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 126,
  "rating": 1.4,
  "ratingCount": 1730,
  "imageUrl": "https://picsum.photos/seed/product-150/800/800",
  "createdAt": "2026-02-01T12:45:48.033Z",
  "updatedAt": "2026-03-27T12:39:39.722Z"
}
Draftbit