Gorgeous Rubber Pizza
Hamill, Bradtke and O'Connell
USD130.75
In stock
★ 2.6 (549)
New Chips model with 59 GB RAM, 72 GB storage, and crafty features
- Category
- clothing
Overview
products / #28
Hamill, Bradtke and O'Connell
USD130.75
In stock
★ 2.6 (549)
New Chips model with 59 GB RAM, 72 GB storage, and crafty features
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/28" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/28" ); 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/28"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/28"
)
product = res.json() Response
{
"id": 28,
"sku": "4X0U36PGS6",
"name": "Gorgeous Rubber Pizza",
"slug": "gorgeous-rubber-pizza-28",
"description": "New Chips model with 59 GB RAM, 72 GB storage, and crafty features",
"category": "clothing",
"brand": "Hamill, Bradtke and O'Connell",
"price": 130.75,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 152,
"rating": 2.6,
"ratingCount": 549,
"imageUrl": "https://picsum.photos/seed/product-28/800/800",
"createdAt": "2025-03-22T03:32:26.536Z",
"updatedAt": "2025-09-08T07:59:52.546Z"
}