Puma RS-X (Yellow/Brown)
Puma
USD295.00
sneakers / #59
Puma
USD295.00
curl -sS \
"https://example-data.com/api/v1/sneakers/59" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/sneakers/59"
);
const sneaker = await res.json();import type { Sneaker } from "https://example-data.com/types/sneakers.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/sneakers/59"
);
const sneaker = (await res.json()) as Sneaker;import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/59"
)
sneaker = res.json() {
"id": 59,
"brand": "Puma",
"model": "RS-X",
"colorway": "Yellow/Brown",
"style": "Trail",
"releaseDate": "2025-10-31",
"retailPrice": 295,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-59/800/600",
"sizesAvailable": [
"7.5",
"8",
"8.5",
"9.5",
"11",
"12"
],
"gender": "unisex",
"createdAt": "2025-10-31T11:16:44.941Z"
}