example-data.com

products / #44

Licensed Concrete Table

Licensed Concrete Table

Kirlin - Moore

USD281.09

In stock

★ 2.5 (1832)

Botsford, Watsica and Funk's most advanced Bike technology increases quiet capabilities

Category
toys

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/44"
)
product = res.json()
{
  "id": 44,
  "sku": "EIG4XNI29L",
  "name": "Licensed Concrete Table",
  "slug": "licensed-concrete-table-44",
  "description": "Botsford, Watsica and Funk's most advanced Bike technology increases quiet capabilities",
  "category": "toys",
  "brand": "Kirlin - Moore",
  "price": 281.09,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 26,
  "rating": 2.5,
  "ratingCount": 1832,
  "imageUrl": "https://picsum.photos/seed/product-44/800/800",
  "createdAt": "2024-09-23T09:04:32.027Z",
  "updatedAt": "2024-10-02T16:41:21.163Z"
}
Draftbit