example-data.com

products / #47

Tasty Metal Chips

Tasty Metal Chips

Hansen, Brekke and Bartell

USD330.09

In stock

★ 1.8 (1819)

Savor the sweet essence in our Towels, designed for frightened culinary adventures

Category
electronics

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/47"
)
product = res.json()
{
  "id": 47,
  "sku": "GMJ4B5GITP",
  "name": "Tasty Metal Chips",
  "slug": "tasty-metal-chips-47",
  "description": "Savor the sweet essence in our Towels, designed for frightened culinary adventures",
  "category": "electronics",
  "brand": "Hansen, Brekke and Bartell",
  "price": 330.09,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 153,
  "rating": 1.8,
  "ratingCount": 1819,
  "imageUrl": "https://picsum.photos/seed/product-47/800/800",
  "createdAt": "2026-04-02T16:17:58.422Z",
  "updatedAt": "2026-05-16T14:38:39.419Z"
}
Draftbit