Recycled Granite Mouse
Toy, Upton and Rath
USD221.15 USD131.35
In stock
★ 3.6 (1356)
The Advanced systematic capability Shirt offers reliable performance and intrepid design
- Category
- books
Overview
products / #66
Toy, Upton and Rath
USD221.15 USD131.35
In stock
★ 3.6 (1356)
The Advanced systematic capability Shirt offers reliable performance and intrepid design
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/66" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/66" ); 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/66"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/66"
)
product = res.json() Response
{
"id": 66,
"sku": "A34V34ABKS",
"name": "Recycled Granite Mouse",
"slug": "recycled-granite-mouse-66",
"description": "The Advanced systematic capability Shirt offers reliable performance and intrepid design",
"category": "books",
"brand": "Toy, Upton and Rath",
"price": 221.15,
"salePrice": 131.35,
"currency": "USD",
"inStock": true,
"stockCount": 333,
"rating": 3.6,
"ratingCount": 1356,
"imageUrl": "https://picsum.photos/seed/product-66/800/800",
"createdAt": "2025-03-12T17:41:26.766Z",
"updatedAt": "2025-04-19T03:21:43.032Z"
}