example-data.com

products / #63

Recycled Aluminum Pants

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

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/products/63" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/products/63"
);
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/63"
);
const product = (await res.json()) as Product;
import requests

res = requests.get(
    "https://example-data.com/api/v1/products/63"
)
product = res.json()
{
  "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"
}
Draftbit