example-data.com

products / #1

Tasty Silk Tuna

Tasty Silk Tuna

Braun - Tromp

USD219.09

Out of stock

★ 2.3 (657)

Our bear-friendly Chips ensures unlucky comfort for your pets

Category
clothing

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/1"
)
product = res.json()
{
  "id": 1,
  "sku": "H57WBW2GVC",
  "name": "Tasty Silk Tuna",
  "slug": "tasty-silk-tuna-1",
  "description": "Our bear-friendly Chips ensures unlucky comfort for your pets",
  "category": "clothing",
  "brand": "Braun - Tromp",
  "price": 219.09,
  "salePrice": null,
  "currency": "USD",
  "inStock": false,
  "stockCount": 0,
  "rating": 2.3,
  "ratingCount": 657,
  "imageUrl": "https://picsum.photos/seed/product-1/800/800",
  "createdAt": "2026-03-10T02:02:36.337Z",
  "updatedAt": "2026-05-11T20:35:27.253Z"
}
Draftbit