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
Overview
products / #35
Waelchi, Heaney and McKenzie
USD147.89
In stock
★ 4.9 (165)
Discover the sea lion-like agility of our Fish, perfect for white users
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/35" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/35" ); const product = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/products.d.ts https://example-data.com/types/products.d.ts
import type { Product } from "./types/products";
const res = await fetch(
"https://example-data.com/api/v1/products/35"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/35"
)
product = res.json() Response
{
"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"
}