example-data.com

products / #21

Fantastic Marble Chicken

Fantastic Marble Chicken

Spencer LLC

USD389.15 USD225.53

In stock

★ 1.1 (109)

New Chair model with 54 GB RAM, 943 GB storage, and steep features

Category
books

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/21"
)
product = res.json()
{
  "id": 21,
  "sku": "COXSECNI59",
  "name": "Fantastic Marble Chicken",
  "slug": "fantastic-marble-chicken-21",
  "description": "New Chair model with 54 GB RAM, 943 GB storage, and steep features",
  "category": "books",
  "brand": "Spencer LLC",
  "price": 389.15,
  "salePrice": 225.53,
  "currency": "USD",
  "inStock": true,
  "stockCount": 12,
  "rating": 1.1,
  "ratingCount": 109,
  "imageUrl": "https://picsum.photos/seed/product-21/800/800",
  "createdAt": "2025-03-17T09:17:03.734Z",
  "updatedAt": "2025-05-04T11:41:13.300Z"
}
Draftbit