Fresh Gold Pants
Lesch Inc
USD424.19
In stock
★ 2.9 (3050)
Ergonomic Pizza made with Wooden for all-day outgoing support
- Category
- sports
Overview
products / #24
Lesch Inc
USD424.19
In stock
★ 2.9 (3050)
Ergonomic Pizza made with Wooden for all-day outgoing support
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/24" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/24" ); 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/24"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/24"
)
product = res.json() Response
{
"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"
}