Refined Plastic Pants
Brakus, O'Reilly and Kuhic
USD149.69 USD93.23
In stock
★ 1.8 (288)
Modern Shoes designed with Gold for ambitious performance
- Category
- kitchen
Overview
products / #170
Brakus, O'Reilly and Kuhic
USD149.69 USD93.23
In stock
★ 1.8 (288)
Modern Shoes designed with Gold for ambitious performance
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/170" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/170" ); 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/170"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/170"
)
product = res.json() Response
{
"id": 170,
"sku": "Y2TOIIY7ZM",
"name": "Refined Plastic Pants",
"slug": "refined-plastic-pants-170",
"description": "Modern Shoes designed with Gold for ambitious performance",
"category": "kitchen",
"brand": "Brakus, O'Reilly and Kuhic",
"price": 149.69,
"salePrice": 93.23,
"currency": "USD",
"inStock": true,
"stockCount": 335,
"rating": 1.8,
"ratingCount": 288,
"imageUrl": "https://picsum.photos/seed/product-170/800/800",
"createdAt": "2024-12-14T18:42:57.473Z",
"updatedAt": "2025-12-12T18:02:25.185Z"
}