Soft Gold Chips
Barrows and Sons
USD226.49
In stock
★ 1.2 (179)
The Future-proofed global encoding Mouse offers reliable performance and bitter design
- Category
- books
Overview
products / #25
Barrows and Sons
USD226.49
In stock
★ 1.2 (179)
The Future-proofed global encoding Mouse offers reliable performance and bitter design
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/25" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/25" ); 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/25"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/25"
)
product = res.json() Response
{
"id": 25,
"sku": "E7V3TKJGIV",
"name": "Soft Gold Chips",
"slug": "soft-gold-chips-25",
"description": "The Future-proofed global encoding Mouse offers reliable performance and bitter design",
"category": "books",
"brand": "Barrows and Sons",
"price": 226.49,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 233,
"rating": 1.2,
"ratingCount": 179,
"imageUrl": "https://picsum.photos/seed/product-25/800/800",
"createdAt": "2025-11-08T01:07:32.032Z",
"updatedAt": "2026-02-25T00:27:30.225Z"
}