Licensed Concrete Bike
Powlowski, Grimes and Willms
USD17.10
Out of stock
★ 3.0 (100)
Our tiger-friendly Hat ensures impish comfort for your pets
- Category
- books
products / #38
Powlowski, Grimes and Willms
USD17.10
Out of stock
★ 3.0 (100)
Our tiger-friendly Hat ensures impish comfort for your pets
curl -sS \
"https://example-data.com/api/v1/products/38" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/products/38"
);
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/38"
);
const product = (await res.json()) as Product;import requests
res = requests.get(
"https://example-data.com/api/v1/products/38"
)
product = res.json() {
"id": 38,
"sku": "83RW70UTE9",
"name": "Licensed Concrete Bike",
"slug": "licensed-concrete-bike-38",
"description": "Our tiger-friendly Hat ensures impish comfort for your pets",
"category": "books",
"brand": "Powlowski, Grimes and Willms",
"price": 17.1,
"salePrice": null,
"currency": "USD",
"inStock": false,
"stockCount": 0,
"rating": 3,
"ratingCount": 100,
"imageUrl": "https://picsum.photos/seed/product-38/800/800",
"createdAt": "2024-11-27T08:58:28.111Z",
"updatedAt": "2024-12-06T02:54:33.071Z"
}