example-data.com

products / #193

Handmade Rubber Tuna

Handmade Rubber Tuna

Beer, Smith and Morissette

USD219.55 USD113.33

Out of stock

★ 2.9 (803)

Savor the creamy essence in our Hat, designed for silent culinary adventures

Category
beauty

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/193"
)
product = res.json()
{
  "id": 193,
  "sku": "2Q9WLKC55I",
  "name": "Handmade Rubber Tuna",
  "slug": "handmade-rubber-tuna-193",
  "description": "Savor the creamy essence in our Hat, designed for silent culinary adventures",
  "category": "beauty",
  "brand": "Beer, Smith and Morissette",
  "price": 219.55,
  "salePrice": 113.33,
  "currency": "USD",
  "inStock": false,
  "stockCount": 0,
  "rating": 2.9,
  "ratingCount": 803,
  "imageUrl": "https://picsum.photos/seed/product-193/800/800",
  "createdAt": "2025-09-05T19:36:54.901Z",
  "updatedAt": "2026-04-05T16:52:22.178Z"
}
Draftbit