Recycled Plastic Tuna
Baumbach LLC
USD42.64
In stock
★ 3.2 (3065)
The Emerson Chicken is the latest in a series of blaring products from Haley, Hansen and Abshire
- Category
- books
products / #121
Baumbach LLC
USD42.64
In stock
★ 3.2 (3065)
The Emerson Chicken is the latest in a series of blaring products from Haley, Hansen and Abshire
curl -sS \
"https://example-data.com/api/v1/products/121" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/121"
);
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/121"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/121"
)
product = res.json() {
"id": 121,
"sku": "JX5PO3VSOT",
"name": "Recycled Plastic Tuna",
"slug": "recycled-plastic-tuna-121",
"description": "The Emerson Chicken is the latest in a series of blaring products from Haley, Hansen and Abshire",
"category": "books",
"brand": "Baumbach LLC",
"price": 42.64,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 386,
"rating": 3.2,
"ratingCount": 3065,
"imageUrl": "https://picsum.photos/seed/product-121/800/800",
"createdAt": "2024-07-30T16:46:47.843Z",
"updatedAt": "2025-06-11T19:56:08.468Z"
}