example-data.com

products / #33

Sleek Plastic Shoes

Sleek Plastic Shoes

Renner, VonRueden and Powlowski

USD60.49

In stock

★ 2.4 (3508)

Our moist-inspired Keyboard brings a taste of luxury to your sturdy lifestyle

Category
sports

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/33"
)
product = res.json()
{
  "id": 33,
  "sku": "734LB51X8T",
  "name": "Sleek Plastic Shoes",
  "slug": "sleek-plastic-shoes-33",
  "description": "Our moist-inspired Keyboard brings a taste of luxury to your sturdy lifestyle",
  "category": "sports",
  "brand": "Renner, VonRueden and Powlowski",
  "price": 60.49,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 217,
  "rating": 2.4,
  "ratingCount": 3508,
  "imageUrl": "https://picsum.photos/seed/product-33/800/800",
  "createdAt": "2024-07-01T16:52:50.940Z",
  "updatedAt": "2025-03-10T20:45:22.081Z"
}
Draftbit