Oriental Rubber Shirt
Rohan - Strosin
USD24.35
In stock
★ 1.8 (1048)
Our tangy-inspired Pants brings a taste of luxury to your corny lifestyle
- Category
- sports
Overview
products / #42
Rohan - Strosin
USD24.35
In stock
★ 1.8 (1048)
Our tangy-inspired Pants brings a taste of luxury to your corny lifestyle
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/42" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/42" ); 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/42"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/42"
)
product = res.json() Response
{
"id": 42,
"sku": "VCZ6KX16B2",
"name": "Oriental Rubber Shirt",
"slug": "oriental-rubber-shirt-42",
"description": "Our tangy-inspired Pants brings a taste of luxury to your corny lifestyle",
"category": "sports",
"brand": "Rohan - Strosin",
"price": 24.35,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 371,
"rating": 1.8,
"ratingCount": 1048,
"imageUrl": "https://picsum.photos/seed/product-42/800/800",
"createdAt": "2026-03-17T14:44:18.437Z",
"updatedAt": "2026-03-30T05:34:42.327Z"
}