Tasty Gold Salad
Langworth, Jacobi and Walsh
USD50.29 USD40.59
In stock
★ 4.9 (574)
Discover the unfortunate new Hat with an exciting mix of Gold ingredients
- Category
- home
Overview
products / #126
Langworth, Jacobi and Walsh
USD50.29 USD40.59
In stock
★ 4.9 (574)
Discover the unfortunate new Hat with an exciting mix of Gold ingredients
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/126" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/126" ); 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/126"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/126"
)
product = res.json() Response
{
"id": 126,
"sku": "VQOF602AV1",
"name": "Tasty Gold Salad",
"slug": "tasty-gold-salad-126",
"description": "Discover the unfortunate new Hat with an exciting mix of Gold ingredients",
"category": "home",
"brand": "Langworth, Jacobi and Walsh",
"price": 50.29,
"salePrice": 40.59,
"currency": "USD",
"inStock": true,
"stockCount": 275,
"rating": 4.9,
"ratingCount": 574,
"imageUrl": "https://picsum.photos/seed/product-126/800/800",
"createdAt": "2025-04-17T05:57:16.519Z",
"updatedAt": "2025-11-25T13:27:40.330Z"
}