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
Overview
products / #38
Powlowski, Grimes and Willms
USD17.10
Out of stock
★ 3.0 (100)
Our tiger-friendly Hat ensures impish comfort for your pets
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/38" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/38" ); 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/38"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/38"
)
product = res.json() Response
{
"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"
}