Tasty Silk Tuna
Braun - Tromp
USD219.09
Out of stock
★ 2.3 (657)
Our bear-friendly Chips ensures unlucky comfort for your pets
- Category
- clothing
Overview
products / #1
Braun - Tromp
USD219.09
Out of stock
★ 2.3 (657)
Our bear-friendly Chips ensures unlucky comfort for your pets
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/1" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/1" ); 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/1"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/1"
)
product = res.json() Response
{
"id": 1,
"sku": "H57WBW2GVC",
"name": "Tasty Silk Tuna",
"slug": "tasty-silk-tuna-1",
"description": "Our bear-friendly Chips ensures unlucky comfort for your pets",
"category": "clothing",
"brand": "Braun - Tromp",
"price": 219.09,
"salePrice": null,
"currency": "USD",
"inStock": false,
"stockCount": 0,
"rating": 2.3,
"ratingCount": 657,
"imageUrl": "https://picsum.photos/seed/product-1/800/800",
"createdAt": "2026-03-10T02:02:36.337Z",
"updatedAt": "2026-05-11T20:35:27.253Z"
}