Awesome Bamboo Fish
Bednar Group
USD435.99
In stock
★ 2.7 (747)
New Pants model with 85 GB RAM, 595 GB storage, and enchanting features
- Category
- electronics
products / #130
Bednar Group
USD435.99
In stock
★ 2.7 (747)
New Pants model with 85 GB RAM, 595 GB storage, and enchanting features
curl -sS \
"https://example-data.com/api/v1/products/130" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/130"
);
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/130"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/130"
)
product = res.json() {
"id": 130,
"sku": "C63H7XLLL2",
"name": "Awesome Bamboo Fish",
"slug": "awesome-bamboo-fish-130",
"description": "New Pants model with 85 GB RAM, 595 GB storage, and enchanting features",
"category": "electronics",
"brand": "Bednar Group",
"price": 435.99,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 332,
"rating": 2.7,
"ratingCount": 747,
"imageUrl": "https://picsum.photos/seed/product-130/800/800",
"createdAt": "2025-08-20T00:53:16.718Z",
"updatedAt": "2026-02-04T03:28:26.998Z"
}