Recycled Aluminum Pants
Champlin - Herman
USD404.59
In stock
★ 2.1 (3312)
Discover the dutiful new Bike with an exciting mix of Marble ingredients
- Category
- kitchen
Overview
products / #63
Champlin - Herman
USD404.59
In stock
★ 2.1 (3312)
Discover the dutiful new Bike with an exciting mix of Marble ingredients
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/63" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/63" ); 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/63"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/63"
)
product = res.json() Response
{
"id": 63,
"sku": "ILGJRZR3WL",
"name": "Recycled Aluminum Pants",
"slug": "recycled-aluminum-pants-63",
"description": "Discover the dutiful new Bike with an exciting mix of Marble ingredients",
"category": "kitchen",
"brand": "Champlin - Herman",
"price": 404.59,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 130,
"rating": 2.1,
"ratingCount": 3312,
"imageUrl": "https://picsum.photos/seed/product-63/800/800",
"createdAt": "2025-03-17T21:16:26.756Z",
"updatedAt": "2026-04-27T11:02:18.906Z"
}