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
Overview
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
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/13" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/13" ); 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/13"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/13"
)
product = res.json() Response
{
"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"
}