example-data.com

products / #35

Small Gold Tuna

Small Gold Tuna

Waelchi, Heaney and McKenzie

USD147.89

In stock

★ 4.9 (165)

Discover the sea lion-like agility of our Fish, perfect for white users

Category
toys

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/35"
)
product = res.json()
{
  "id": 35,
  "sku": "0785YQ1538",
  "name": "Small Gold Tuna",
  "slug": "small-gold-tuna-35",
  "description": "Discover the sea lion-like agility of our Fish, perfect for white users",
  "category": "toys",
  "brand": "Waelchi, Heaney and McKenzie",
  "price": 147.89,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 122,
  "rating": 4.9,
  "ratingCount": 165,
  "imageUrl": "https://picsum.photos/seed/product-35/800/800",
  "createdAt": "2026-02-17T17:43:21.765Z",
  "updatedAt": "2026-05-21T15:08:30.726Z"
}
Draftbit