example-data.com

products / #135

Fantastic Granite Keyboard

Fantastic Granite Keyboard

Prosacco and Sons

USD472.95

In stock

★ 2.1 (1975)

The Visionary AI-powered array Fish offers reliable performance and upright design

Category
clothing

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/135"
)
product = res.json()
{
  "id": 135,
  "sku": "SP0IFW3KYQ",
  "name": "Fantastic Granite Keyboard",
  "slug": "fantastic-granite-keyboard-135",
  "description": "The Visionary AI-powered array Fish offers reliable performance and upright design",
  "category": "clothing",
  "brand": "Prosacco and Sons",
  "price": 472.95,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 132,
  "rating": 2.1,
  "ratingCount": 1975,
  "imageUrl": "https://picsum.photos/seed/product-135/800/800",
  "createdAt": "2025-04-26T12:01:56.509Z",
  "updatedAt": "2025-09-30T13:31:16.150Z"
}
Draftbit