New Balance 2002R (Green/Pink/Black)
New Balance
USD100.00
sneakers / #14
New Balance
USD100.00
curl -sS \
"https://example-data.com/api/v1/sneakers/14" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/sneakers/14"
);
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/14"
);
const sneaker = (await res.json()) as Sneaker;import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/14"
)
sneaker = res.json() {
"id": 14,
"brand": "New Balance",
"model": "2002R",
"colorway": "Green/Pink/Black",
"style": "Skateboarding",
"releaseDate": "2018-09-18",
"retailPrice": 100,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-14/800/600",
"sizesAvailable": [
"5",
"6",
"7",
"8",
"9",
"9.5"
],
"gender": "women",
"createdAt": "2018-09-18T00:14:15.215Z"
}