example-data.com

products / #177

Refined Bamboo Computer

Refined Bamboo Computer

Dietrich, Zieme and Moore

USD47.15

Out of stock

★ 1.5 (660)

The Rosemary Mouse is the latest in a series of windy products from Morissette and Sons

Category
toys

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/177"
)
product = res.json()
{
  "id": 177,
  "sku": "O8U8BW6QFS",
  "name": "Refined Bamboo Computer",
  "slug": "refined-bamboo-computer-177",
  "description": "The Rosemary Mouse is the latest in a series of windy products from Morissette and Sons",
  "category": "toys",
  "brand": "Dietrich, Zieme and Moore",
  "price": 47.15,
  "salePrice": null,
  "currency": "USD",
  "inStock": false,
  "stockCount": 0,
  "rating": 1.5,
  "ratingCount": 660,
  "imageUrl": "https://picsum.photos/seed/product-177/800/800",
  "createdAt": "2024-05-28T16:16:02.843Z",
  "updatedAt": "2024-10-19T18:49:27.723Z"
}
Draftbit