Oriental Bamboo Bike
Schmitt - Abshire
USD314.85 USD223.13
In stock
★ 4.2 (2174)
Stylish Car designed to make you stand out with winding looks
- Category
- sports
Overview
products / #153
Schmitt - Abshire
USD314.85 USD223.13
In stock
★ 4.2 (2174)
Stylish Car designed to make you stand out with winding looks
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/153" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/153" ); 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/153"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/153"
)
product = res.json() Response
{
"id": 153,
"sku": "TMDRV6KGFC",
"name": "Oriental Bamboo Bike",
"slug": "oriental-bamboo-bike-153",
"description": "Stylish Car designed to make you stand out with winding looks",
"category": "sports",
"brand": "Schmitt - Abshire",
"price": 314.85,
"salePrice": 223.13,
"currency": "USD",
"inStock": true,
"stockCount": 283,
"rating": 4.2,
"ratingCount": 2174,
"imageUrl": "https://picsum.photos/seed/product-153/800/800",
"createdAt": "2026-02-23T01:28:35.455Z",
"updatedAt": "2026-03-21T21:55:57.362Z"
}