example-data.com

products / #92

Awesome Rubber Chicken

Awesome Rubber Chicken

Kiehn, Bednar and Ledner

USD251.49

In stock

★ 3.6 (816)

Licensed Fish designed with Bamboo for mealy performance

Category
clothing

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/92"
)
product = res.json()
{
  "id": 92,
  "sku": "DHZC6IQ4S0",
  "name": "Awesome Rubber Chicken",
  "slug": "awesome-rubber-chicken-92",
  "description": "Licensed Fish designed with Bamboo for mealy performance",
  "category": "clothing",
  "brand": "Kiehn, Bednar and Ledner",
  "price": 251.49,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 292,
  "rating": 3.6,
  "ratingCount": 816,
  "imageUrl": "https://picsum.photos/seed/product-92/800/800",
  "createdAt": "2024-06-11T01:30:26.313Z",
  "updatedAt": "2025-12-21T12:56:32.989Z"
}
Draftbit