example-data.com

products / #42

Oriental Rubber Shirt

Oriental Rubber Shirt

Rohan - Strosin

USD24.35

In stock

★ 1.8 (1048)

Our tangy-inspired Pants brings a taste of luxury to your corny lifestyle

Category
sports

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/42"
)
product = res.json()
{
  "id": 42,
  "sku": "VCZ6KX16B2",
  "name": "Oriental Rubber Shirt",
  "slug": "oriental-rubber-shirt-42",
  "description": "Our tangy-inspired Pants brings a taste of luxury to your corny lifestyle",
  "category": "sports",
  "brand": "Rohan - Strosin",
  "price": 24.35,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 371,
  "rating": 1.8,
  "ratingCount": 1048,
  "imageUrl": "https://picsum.photos/seed/product-42/800/800",
  "createdAt": "2026-03-17T14:44:18.437Z",
  "updatedAt": "2026-03-30T05:34:42.327Z"
}
Draftbit