Reebok Classic Leather (White/Green/Tan)
Reebok
USD325.00
sneakers / #31
Reebok
USD325.00
curl -sS \
"https://example-data.com/api/v1/sneakers/31" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/sneakers/31"
);
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/31"
);
const sneaker = (await res.json()) as Sneaker;import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/31"
)
sneaker = res.json() {
"id": 31,
"brand": "Reebok",
"model": "Classic Leather",
"colorway": "White/Green/Tan",
"style": "Basketball",
"releaseDate": "2024-07-14",
"retailPrice": 325,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-31/800/600",
"sizesAvailable": [
"7",
"7.5",
"8",
"9",
"10",
"10.5",
"11",
"11.5",
"12",
"13"
],
"gender": "unisex",
"createdAt": "2024-07-14T02:25:34.891Z"
}