Electronic Ceramic Bike
Carter - Sawayn
USD372.29
In stock
★ 4.4 (3206)
Featuring Copper-enhanced technology, our Keyboard offers unparalleled worthy performance
- Category
- home
Overview
products / #169
Carter - Sawayn
USD372.29
In stock
★ 4.4 (3206)
Featuring Copper-enhanced technology, our Keyboard offers unparalleled worthy performance
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/169" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/169" ); 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/169"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/169"
)
product = res.json() Response
{
"id": 169,
"sku": "G09JIXK4R0",
"name": "Electronic Ceramic Bike",
"slug": "electronic-ceramic-bike-169",
"description": "Featuring Copper-enhanced technology, our Keyboard offers unparalleled worthy performance",
"category": "home",
"brand": "Carter - Sawayn",
"price": 372.29,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 84,
"rating": 4.4,
"ratingCount": 3206,
"imageUrl": "https://picsum.photos/seed/product-169/800/800",
"createdAt": "2024-10-28T06:19:06.124Z",
"updatedAt": "2026-03-09T05:20:01.943Z"
}