example-data.com

products / #24

Fresh Gold Pants

Fresh Gold Pants

Lesch Inc

USD424.19

In stock

★ 2.9 (3050)

Ergonomic Pizza made with Wooden for all-day outgoing support

Category
sports

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/24"
)
product = res.json()
{
  "id": 24,
  "sku": "SFGN4RGLYL",
  "name": "Fresh Gold Pants",
  "slug": "fresh-gold-pants-24",
  "description": "Ergonomic Pizza made with Wooden for all-day outgoing support",
  "category": "sports",
  "brand": "Lesch Inc",
  "price": 424.19,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 365,
  "rating": 2.9,
  "ratingCount": 3050,
  "imageUrl": "https://picsum.photos/seed/product-24/800/800",
  "createdAt": "2025-12-07T16:58:35.407Z",
  "updatedAt": "2026-02-28T09:41:11.066Z"
}
Draftbit