example-data.com

products / #29

Rustic Bronze Bike

Rustic Bronze Bike

Hane Group

USD486.29

In stock

★ 4.0 (1090)

Discover the webbed new Computer with an exciting mix of Plastic ingredients

Category
toys

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/products/29"
)
product = res.json()
{
  "id": 29,
  "sku": "D2JSN8HNFF",
  "name": "Rustic Bronze Bike",
  "slug": "rustic-bronze-bike-29",
  "description": "Discover the webbed new Computer with an exciting mix of Plastic ingredients",
  "category": "toys",
  "brand": "Hane Group",
  "price": 486.29,
  "salePrice": null,
  "currency": "USD",
  "inStock": true,
  "stockCount": 86,
  "rating": 4,
  "ratingCount": 1090,
  "imageUrl": "https://picsum.photos/seed/product-29/800/800",
  "createdAt": "2025-01-24T11:33:11.708Z",
  "updatedAt": "2026-05-12T17:19:05.373Z"
}
Draftbit