Refined Plastic Keyboard
Luettgen, Langosh and Turcotte
USD379.19
In stock
★ 1.3 (3149)
New Pants model with 74 GB RAM, 502 GB storage, and submissive features
- Category
- books
Overview
products / #115
Luettgen, Langosh and Turcotte
USD379.19
In stock
★ 1.3 (3149)
New Pants model with 74 GB RAM, 502 GB storage, and submissive features
Request
curl example
curl -sS \ "https://example-data.com/api/v1/products/115" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/products/115" ); 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/115"
);
const product = (await res.json()) as Product; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/products/115"
)
product = res.json() Response
{
"id": 115,
"sku": "BIPF6AGEF8",
"name": "Refined Plastic Keyboard",
"slug": "refined-plastic-keyboard-115",
"description": "New Pants model with 74 GB RAM, 502 GB storage, and submissive features",
"category": "books",
"brand": "Luettgen, Langosh and Turcotte",
"price": 379.19,
"salePrice": null,
"currency": "USD",
"inStock": true,
"stockCount": 175,
"rating": 1.3,
"ratingCount": 3149,
"imageUrl": "https://picsum.photos/seed/product-115/800/800",
"createdAt": "2024-11-03T05:22:41.062Z",
"updatedAt": "2025-10-30T04:40:30.584Z"
}