example-data.com

products / #180

Practical Plastic Gloves

Practical Plastic Gloves

Ryan, Greenholt and Roberts

USD185.45

In stock

★ 3.8 (2440)

Innovative Pizza featuring gripping technology and Cotton construction

Category
home

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/180"
)
product = res.json()
{
  "id": 180,
  "sku": "HO1D3SPUUH",
  "name": "Practical Plastic Gloves",
  "slug": "practical-plastic-gloves-180",
  "description": "Innovative Pizza featuring gripping technology and Cotton construction",
  "category": "home",
  "brand": "Ryan, Greenholt and Roberts",
  "price": 185.45,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 240,
  "rating": 3.8,
  "ratingCount": 2440,
  "imageUrl": "https://picsum.photos/seed/product-180/800/800",
  "createdAt": "2025-09-16T23:50:03.722Z",
  "updatedAt": "2026-05-09T01:21:07.286Z"
}
Draftbit