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