New Balance 2002R (Blue/Cream/Red)
New Balance
USD200.00
sneakers / #9
New Balance
USD200.00
curl -sS \
"https://example-data.com/api/v1/sneakers/9" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/sneakers/9"
);
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/9"
);
const sneaker = (await res.json()) as Sneaker;import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/9"
)
sneaker = res.json() {
"id": 9,
"brand": "New Balance",
"model": "2002R",
"colorway": "Blue/Cream/Red",
"style": "Trail",
"releaseDate": "2016-11-25",
"retailPrice": 200,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-9/800/600",
"sizesAvailable": [
"3.5Y",
"4Y",
"4.5Y",
"5Y",
"6Y",
"6.5Y",
"7Y"
],
"gender": "youth",
"createdAt": "2016-11-25T08:52:15.045Z"
}