example-data.com

products / #66

Recycled Granite Mouse

Recycled Granite Mouse

Toy, Upton and Rath

USD221.15 USD131.35

In stock

★ 3.6 (1356)

The Advanced systematic capability Shirt offers reliable performance and intrepid design

Category
books

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/66"
)
product = res.json()
{
  "id": 66,
  "sku": "A34V34ABKS",
  "name": "Recycled Granite Mouse",
  "slug": "recycled-granite-mouse-66",
  "description": "The Advanced systematic capability Shirt offers reliable performance and intrepid design",
  "category": "books",
  "brand": "Toy, Upton and Rath",
  "price": 221.15,
  "salePrice": 131.35,
  "currency": "USD",
  "inStock": true,
  "stockCount": 333,
  "rating": 3.6,
  "ratingCount": 1356,
  "imageUrl": "https://picsum.photos/seed/product-66/800/800",
  "createdAt": "2025-03-12T17:41:26.766Z",
  "updatedAt": "2025-04-19T03:21:43.032Z"
}
Draftbit