Incredible Rubber Pants
Shields, Hilpert and Schamberger
USD339.95
In stock
★ 2.0 (1403)
New plum Salad with ergonomic design for straight comfort
- Category
- sports
Overview
products / #105
Shields, Hilpert and Schamberger
USD339.95
In stock
★ 2.0 (1403)
New plum Salad with ergonomic design for straight comfort
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/105" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/105" ); 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/105"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/105"
)
product = res.json() Response
{
"id": 105,
"sku": "GRD1AOW72V",
"name": "Incredible Rubber Pants",
"slug": "incredible-rubber-pants-105",
"description": "New plum Salad with ergonomic design for straight comfort",
"category": "sports",
"brand": "Shields, Hilpert and Schamberger",
"price": 339.95,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 82,
"rating": 2,
"ratingCount": 1403,
"imageUrl": "https://picsum.photos/seed/product-105/800/800",
"createdAt": "2025-10-09T03:19:38.914Z",
"updatedAt": "2025-11-14T08:22:32.700Z"
}