Electronic Cotton Towels
Yundt LLC
USD405.69
Out of stock
★ 2.3 (146)
Discover the ostrich-like agility of our Salad, perfect for bossy users
- Category
- home
Overview
products / #17
Yundt LLC
USD405.69
Out of stock
★ 2.3 (146)
Discover the ostrich-like agility of our Salad, perfect for bossy users
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/17" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/17" ); 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/17"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/17"
)
product = res.json() Response
{
"id": 17,
"sku": "2AHGG8Z8RI",
"name": "Electronic Cotton Towels",
"slug": "electronic-cotton-towels-17",
"description": "Discover the ostrich-like agility of our Salad, perfect for bossy users",
"category": "home",
"brand": "Yundt LLC",
"price": 405.69,
"salePrice": null,
"currency": "USD",
"inStock": false,
"stockCount": 0,
"rating": 2.3,
"ratingCount": 146,
"imageUrl": "https://picsum.photos/seed/product-17/800/800",
"createdAt": "2025-08-23T13:29:25.162Z",
"updatedAt": "2026-01-10T17:05:49.765Z"
}