Fantastic Wooden Chicken
Fahey - Haley
USD38.39
Out of stock
★ 1.4 (2864)
Stylish Chicken designed to make you stand out with hidden looks
- Category
- kitchen
Overview
products / #56
Fahey - Haley
USD38.39
Out of stock
★ 1.4 (2864)
Stylish Chicken designed to make you stand out with hidden looks
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/56" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/56" ); 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/56"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/56"
)
product = res.json() Response
{
"id": 56,
"sku": "QOSJEYM2QV",
"name": "Fantastic Wooden Chicken",
"slug": "fantastic-wooden-chicken-56",
"description": "Stylish Chicken designed to make you stand out with hidden looks",
"category": "kitchen",
"brand": "Fahey - Haley",
"price": 38.39,
"salePrice": null,
"currency": "USD",
"inStock": false,
"stockCount": 0,
"rating": 1.4,
"ratingCount": 2864,
"imageUrl": "https://picsum.photos/seed/product-56/800/800",
"createdAt": "2024-06-13T21:59:04.090Z",
"updatedAt": "2024-06-27T01:00:08.778Z"
}