Fantastic Marble Chicken
Spencer LLC
USD389.15 USD225.53
In stock
★ 1.1 (109)
New Chair model with 54 GB RAM, 943 GB storage, and steep features
- Category
- books
Overview
products / #21
Spencer LLC
USD389.15 USD225.53
In stock
★ 1.1 (109)
New Chair model with 54 GB RAM, 943 GB storage, and steep features
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/21" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/21" ); 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/21"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/21"
)
product = res.json() Response
{
"id": 21,
"sku": "COXSECNI59",
"name": "Fantastic Marble Chicken",
"slug": "fantastic-marble-chicken-21",
"description": "New Chair model with 54 GB RAM, 943 GB storage, and steep features",
"category": "books",
"brand": "Spencer LLC",
"price": 389.15,
"salePrice": 225.53,
"currency": "USD",
"inStock": true,
"stockCount": 12,
"rating": 1.1,
"ratingCount": 109,
"imageUrl": "https://picsum.photos/seed/product-21/800/800",
"createdAt": "2025-03-17T09:17:03.734Z",
"updatedAt": "2025-05-04T11:41:13.300Z"
}