example-data.com

products / #165

Electronic Rubber Hat

Electronic Rubber Hat

Ankunding, Hessel and Brekke

USD89.79

In stock

★ 3.6 (3820)

Soft Pizza designed with Plastic for second-hand performance

Category
beauty

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/165"
)
product = res.json()
{
  "id": 165,
  "sku": "X12NLRCRSO",
  "name": "Electronic Rubber Hat",
  "slug": "electronic-rubber-hat-165",
  "description": "Soft Pizza designed with Plastic for second-hand performance",
  "category": "beauty",
  "brand": "Ankunding, Hessel and Brekke",
  "price": 89.79,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 321,
  "rating": 3.6,
  "ratingCount": 3820,
  "imageUrl": "https://picsum.photos/seed/product-165/800/800",
  "createdAt": "2024-07-28T04:55:25.280Z",
  "updatedAt": "2025-01-11T03:24:10.251Z"
}
Draftbit