example-data.com

products / #105

Incredible Rubber Pants

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

Component variants

Related

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

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