New Balance 327 (Pink/White)
New Balance
USD80.00
sneakers / #38
New Balance
USD80.00
curl -sS \
"https://example-data.com/api/v1/sneakers/38" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/sneakers/38"
);
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/38"
);
const sneaker = (await res.json()) as Sneaker;import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/38"
)
sneaker = res.json() {
"id": 38,
"brand": "New Balance",
"model": "327",
"colorway": "Pink/White",
"style": "Skateboarding",
"releaseDate": "2017-01-14",
"retailPrice": 80,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-38/800/600",
"sizesAvailable": [
"7",
"7.5",
"8.5",
"9",
"10",
"10.5",
"11",
"11.5",
"13"
],
"gender": "unisex",
"createdAt": "2017-01-14T08:30:36.217Z"
}