example-data.com

products / #126

Tasty Gold Salad

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

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/products/126" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/products/126"
);
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/126"
);
const product = (await res.json()) as Product;
import requests

res = requests.get(
    "https://example-data.com/api/v1/products/126"
)
product = res.json()
{
  "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"
}
Draftbit