Luxurious Cotton Tuna
Zieme - Gleason
USD332.05 USD180.84
In stock
★ 2.2 (4738)
Our lion-friendly Cheese ensures tangible comfort for your pets
- Category
- kitchen
products / #53
Zieme - Gleason
USD332.05 USD180.84
In stock
★ 2.2 (4738)
Our lion-friendly Cheese ensures tangible comfort for your pets
curl -sS \
"https://example-data.com/api/v1/products/53" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/53"
);
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/53"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/53"
)
product = res.json() {
"id": 53,
"sku": "CFJXT2ET90",
"name": "Luxurious Cotton Tuna",
"slug": "luxurious-cotton-tuna-53",
"description": "Our lion-friendly Cheese ensures tangible comfort for your pets",
"category": "kitchen",
"brand": "Zieme - Gleason",
"price": 332.05,
"salePrice": 180.84,
"currency": "USD",
"inStock": true,
"stockCount": 224,
"rating": 2.2,
"ratingCount": 4738,
"imageUrl": "https://picsum.photos/seed/product-53/800/800",
"createdAt": "2026-01-21T01:44:45.101Z",
"updatedAt": "2026-01-28T17:53:59.032Z"
}