Handmade Plastic Fish
Trantow - Bins
USD380.69 USD191.61
In stock
★ 2.2 (4943)
Our delicious-inspired Tuna brings a taste of luxury to your frizzy lifestyle
- Category
- toys
products / #13
Trantow - Bins
USD380.69 USD191.61
In stock
★ 2.2 (4943)
Our delicious-inspired Tuna brings a taste of luxury to your frizzy lifestyle
curl -sS \
"https://example-data.com/api/v1/products/13" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/13"
);
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/13"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/13"
)
product = res.json() {
"id": 13,
"sku": "D5S5Q0BJRC",
"name": "Handmade Plastic Fish",
"slug": "handmade-plastic-fish-13",
"description": "Our delicious-inspired Tuna brings a taste of luxury to your frizzy lifestyle",
"category": "toys",
"brand": "Trantow - Bins",
"price": 380.69,
"salePrice": 191.61,
"currency": "USD",
"inStock": true,
"stockCount": 421,
"rating": 2.2,
"ratingCount": 4943,
"imageUrl": "https://picsum.photos/seed/product-13/800/800",
"createdAt": "2025-07-12T23:33:28.208Z",
"updatedAt": "2026-02-02T00:34:02.488Z"
}