Recycled Plastic Tuna
Nolan, Lubowitz and Reinger
USD295.90
In stock
★ 1.4 (1730)
Savor the fluffy essence in our Ball, designed for ethical culinary adventures
- Category
- home
Overview
products / #150
Nolan, Lubowitz and Reinger
USD295.90
In stock
★ 1.4 (1730)
Savor the fluffy essence in our Ball, designed for ethical culinary adventures
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/150" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/150" ); 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/150"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/150"
)
product = res.json() Response
{
"id": 150,
"sku": "ACH9ZVZMQA",
"name": "Recycled Plastic Tuna",
"slug": "recycled-plastic-tuna-150",
"description": "Savor the fluffy essence in our Ball, designed for ethical culinary adventures",
"category": "home",
"brand": "Nolan, Lubowitz and Reinger",
"price": 295.9,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 126,
"rating": 1.4,
"ratingCount": 1730,
"imageUrl": "https://picsum.photos/seed/product-150/800/800",
"createdAt": "2026-02-01T12:45:48.033Z",
"updatedAt": "2026-03-27T12:39:39.722Z"
}