Asics Gel-1130 (Yellow/Blue)
Asics
USD285.00
sneakers / #15
Asics
USD285.00
curl -sS \
"https://example-data.com/api/v1/sneakers/15" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/sneakers/15"
);
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/15"
);
const sneaker = (await res.json()) as Sneaker;import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/15"
)
sneaker = res.json() {
"id": 15,
"brand": "Asics",
"model": "Gel-1130",
"colorway": "Yellow/Blue",
"style": "Basketball",
"releaseDate": "2021-11-06",
"retailPrice": 285,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-15/800/600",
"sizesAvailable": [
"7",
"8",
"8.5",
"9",
"9.5",
"10",
"11",
"12",
"13"
],
"gender": "men",
"createdAt": "2021-11-06T09:05:45.627Z"
}