Modern Gold Computer
Franecki LLC
USD26.69
In stock
★ 1.8 (1365)
Experience the yellow brilliance of our Table, perfect for lovable environments
- Category
- kitchen
products / #103
Franecki LLC
USD26.69
In stock
★ 1.8 (1365)
Experience the yellow brilliance of our Table, perfect for lovable environments
curl -sS \
"https://example-data.com/api/v1/products/103" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/103"
);
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/103"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/103"
)
product = res.json() {
"id": 103,
"sku": "FKTU1T67MS",
"name": "Modern Gold Computer",
"slug": "modern-gold-computer-103",
"description": "Experience the yellow brilliance of our Table, perfect for lovable environments",
"category": "kitchen",
"brand": "Franecki LLC",
"price": 26.69,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 82,
"rating": 1.8,
"ratingCount": 1365,
"imageUrl": "https://picsum.photos/seed/product-103/800/800",
"createdAt": "2025-05-21T03:02:12.390Z",
"updatedAt": "2026-01-19T08:44:23.986Z"
}