Handmade Cotton Sausages
Haag, Schowalter and Jerde
USD38.49
In stock
★ 3.1 (4370)
The Liliane Pants is the latest in a series of snarling products from Bruen - Goodwin
- Category
- sports
Overview
products / #179
Haag, Schowalter and Jerde
USD38.49
In stock
★ 3.1 (4370)
The Liliane Pants is the latest in a series of snarling products from Bruen - Goodwin
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/179" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/179" ); 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/179"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/179"
)
product = res.json() Response
{
"id": 179,
"sku": "8K20YLNTN1",
"name": "Handmade Cotton Sausages",
"slug": "handmade-cotton-sausages-179",
"description": "The Liliane Pants is the latest in a series of snarling products from Bruen - Goodwin",
"category": "sports",
"brand": "Haag, Schowalter and Jerde",
"price": 38.49,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 89,
"rating": 3.1,
"ratingCount": 4370,
"imageUrl": "https://picsum.photos/seed/product-179/800/800",
"createdAt": "2025-04-21T11:42:01.211Z",
"updatedAt": "2026-01-14T13:01:27.528Z"
}