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
Overview
products / #130
Bednar Group
USD435.99
In stock
★ 2.7 (747)
New Pants model with 85 GB RAM, 595 GB storage, and enchanting features
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/130" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/130" ); const product = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/products.d.ts https://example-data.com/types/products.d.ts
import type { Product } from "./types/products";
const res = await fetch(
"https://example-data.com/api/v1/products/130"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/130"
)
product = res.json() Response
{
"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"
}