Licensed Bronze Soap
Stoltenberg Group
USD283.59
In stock
★ 4.9 (2822)
Our elephant-friendly Shoes ensures naughty comfort for your pets
- Category
- sports
Overview
products / #50
Stoltenberg Group
USD283.59
In stock
★ 4.9 (2822)
Our elephant-friendly Shoes ensures naughty comfort for your pets
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/50" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/50" ); 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/50"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/50"
)
product = res.json() Response
{
"id": 50,
"sku": "XEZBHKG0WX",
"name": "Licensed Bronze Soap",
"slug": "licensed-bronze-soap-50",
"description": "Our elephant-friendly Shoes ensures naughty comfort for your pets",
"category": "sports",
"brand": "Stoltenberg Group",
"price": 283.59,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 336,
"rating": 4.9,
"ratingCount": 2822,
"imageUrl": "https://picsum.photos/seed/product-50/800/800",
"createdAt": "2025-04-04T04:23:33.683Z",
"updatedAt": "2026-05-15T09:05:02.116Z"
}