example-data.com

products / #140

Incredible Aluminum Keyboard

Incredible Aluminum Keyboard

Glover, Dicki and Abernathy

USD258.39

In stock

★ 3.0 (16)

The sleek and meager Pants comes with turquoise LED lighting for smart functionality

Category
books

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/140"
)
product = res.json()
{
  "id": 140,
  "sku": "7KC8I2NBWS",
  "name": "Incredible Aluminum Keyboard",
  "slug": "incredible-aluminum-keyboard-140",
  "description": "The sleek and meager Pants comes with turquoise LED lighting for smart functionality",
  "category": "books",
  "brand": "Glover, Dicki and Abernathy",
  "price": 258.39,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 268,
  "rating": 3,
  "ratingCount": 16,
  "imageUrl": "https://picsum.photos/seed/product-140/800/800",
  "createdAt": "2026-02-20T20:29:49.801Z",
  "updatedAt": "2026-03-21T12:08:12.059Z"
}
Draftbit