Fresh Steel Pants
Swift - Collins
USD82.34
In stock
★ 2.4 (4267)
Savor the salty essence in our Pants, designed for juvenile culinary adventures
- Category
- kitchen
products / #160
Swift - Collins
USD82.34
In stock
★ 2.4 (4267)
Savor the salty essence in our Pants, designed for juvenile culinary adventures
curl -sS \
"https://example-data.com/api/v1/products/160" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/160"
);
const product = await res.json();import type { Product } from "https://example-data.com/types/products.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/products/160"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/160"
)
product = res.json() {
"id": 160,
"sku": "IYOMU0VCOD",
"name": "Fresh Steel Pants",
"slug": "fresh-steel-pants-160",
"description": "Savor the salty essence in our Pants, designed for juvenile culinary adventures",
"category": "kitchen",
"brand": "Swift - Collins",
"price": 82.34,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 271,
"rating": 2.4,
"ratingCount": 4267,
"imageUrl": "https://picsum.photos/seed/product-160/800/800",
"createdAt": "2025-05-15T22:41:56.161Z",
"updatedAt": "2026-01-24T09:05:22.128Z"
}