Asics Novablast 4 (Gray/Tan/Blue)
Asics
USD90.00
sneakers / #12
Asics
USD90.00
curl -sS \
"https://example-data.com/api/v1/sneakers/12" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/sneakers/12"
);
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/12"
);
const sneaker = (await res.json()) as Sneaker;import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/12"
)
sneaker = res.json() {
"id": 12,
"brand": "Asics",
"model": "Novablast 4",
"colorway": "Gray/Tan/Blue",
"style": "Basketball",
"releaseDate": "2020-01-18",
"retailPrice": 90,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-12/800/600",
"sizesAvailable": [
"5",
"5.5",
"6",
"6.5",
"7",
"7.5",
"8.5",
"9",
"9.5",
"10"
],
"gender": "women",
"createdAt": "2020-01-18T00:11:20.255Z"
}