Asics Gel-Lyte III (Cream/Blue)
Asics
USD300.00
sneakers / #55
Asics
USD300.00
curl -sS \
"https://example-data.com/api/v1/sneakers/55" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/sneakers/55"
);
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/55"
);
const sneaker = (await res.json()) as Sneaker;import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/55"
)
sneaker = res.json() {
"id": 55,
"brand": "Asics",
"model": "Gel-Lyte III",
"colorway": "Cream/Blue",
"style": "Skateboarding",
"releaseDate": "2016-06-30",
"retailPrice": 300,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-55/800/600",
"sizesAvailable": [
"5",
"5.5",
"6",
"6.5",
"7",
"7.5",
"8",
"8.5",
"9",
"9.5",
"10"
],
"gender": "women",
"createdAt": "2016-06-30T21:44:26.942Z"
}