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
Overview
products / #52
Von Inc
USD180.89
Out of stock
★ 1.0 (3037)
Discover the koala-like agility of our Gloves, perfect for baggy users
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/52" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/52" ); const product = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/products.d.ts https://example-data.com/types/products.d.ts
import type { Product } from "./types/products";
const res = await fetch(
"https://example-data.com/api/v1/products/52"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/52"
)
product = res.json() Response
{
"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"
}