Asics Gel-Lyte III (Cream/Blue/Pink)
Asics
USD285.00
sneakers / #71
Asics
USD285.00
curl -sS \
"https://example-data.com/api/v1/sneakers/71" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/sneakers/71"
);
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/71"
);
const sneaker = (await res.json()) as Sneaker;import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/71"
)
sneaker = res.json() {
"id": 71,
"brand": "Asics",
"model": "Gel-Lyte III",
"colorway": "Cream/Blue/Pink",
"style": "Running",
"releaseDate": "2019-08-18",
"retailPrice": 285,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-71/800/600",
"sizesAvailable": [
"7",
"8",
"8.5",
"9",
"9.5",
"10",
"10.5",
"11.5",
"12",
"13"
],
"gender": "unisex",
"createdAt": "2019-08-18T22:19:35.816Z"
}