Gorgeous Bamboo Chicken
McCullough - Ebert
USD315.05
In stock
★ 1.3 (3562)
The sleek and lucky Hat comes with indigo LED lighting for smart functionality
- Category
- beauty
Overview
products / #90
McCullough - Ebert
USD315.05
In stock
★ 1.3 (3562)
The sleek and lucky Hat comes with indigo LED lighting for smart functionality
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/90" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/90" ); 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/90"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/90"
)
product = res.json() Response
{
"id": 90,
"sku": "Z0FYDMHQAT",
"name": "Gorgeous Bamboo Chicken",
"slug": "gorgeous-bamboo-chicken-90",
"description": "The sleek and lucky Hat comes with indigo LED lighting for smart functionality",
"category": "beauty",
"brand": "McCullough - Ebert",
"price": 315.05,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 472,
"rating": 1.3,
"ratingCount": 3562,
"imageUrl": "https://picsum.photos/seed/product-90/800/800",
"createdAt": "2024-07-30T22:11:08.027Z",
"updatedAt": "2025-11-25T21:15:58.684Z"
}