Modern Bronze Shoes
Stiedemann LLC
USD107.65
Out of stock
★ 1.9 (2908)
Our dog-friendly Mouse ensures soulful comfort for your pets
- Category
- sports
Overview
products / #86
Stiedemann LLC
USD107.65
Out of stock
★ 1.9 (2908)
Our dog-friendly Mouse ensures soulful comfort for your pets
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/86" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/86" ); 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/86"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/86"
)
product = res.json() Response
{
"id": 86,
"sku": "U4RRYZAT5B",
"name": "Modern Bronze Shoes",
"slug": "modern-bronze-shoes-86",
"description": "Our dog-friendly Mouse ensures soulful comfort for your pets",
"category": "sports",
"brand": "Stiedemann LLC",
"price": 107.65,
"salePrice": null,
"currency": "USD",
"inStock": false,
"stockCount": 0,
"rating": 1.9,
"ratingCount": 2908,
"imageUrl": "https://picsum.photos/seed/product-86/800/800",
"createdAt": "2025-02-22T23:15:50.192Z",
"updatedAt": "2025-12-24T02:06:12.963Z"
}