example-data.com

products / #52

Practical Rubber Car

Practical Rubber Car

Von Inc

USD180.89

Out of stock

★ 1.0 (3037)

Discover the koala-like agility of our Gloves, perfect for baggy users

Category
kitchen

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/52"
)
product = res.json()
{
  "id": 52,
  "sku": "G48J4PVBC6",
  "name": "Practical Rubber Car",
  "slug": "practical-rubber-car-52",
  "description": "Discover the koala-like agility of our Gloves, perfect for baggy users",
  "category": "kitchen",
  "brand": "Von Inc",
  "price": 180.89,
  "salePrice": null,
  "currency": "USD",
  "inStock": false,
  "stockCount": 0,
  "rating": 1,
  "ratingCount": 3037,
  "imageUrl": "https://picsum.photos/seed/product-52/800/800",
  "createdAt": "2025-03-31T18:12:45.718Z",
  "updatedAt": "2025-07-29T09:34:25.786Z"
}
Draftbit