Asics Gel-Lyte III (Pink/Gray/Navy)
Asics
USD100.00
sneakers / #56
Asics
USD100.00
curl -sS \
"https://example-data.com/api/v1/sneakers/56" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/sneakers/56"
);
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/56"
);
const sneaker = (await res.json()) as Sneaker;import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/56"
)
sneaker = res.json() {
"id": 56,
"brand": "Asics",
"model": "Gel-Lyte III",
"colorway": "Pink/Gray/Navy",
"style": "Trail",
"releaseDate": "2018-06-11",
"retailPrice": 100,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-56/800/600",
"sizesAvailable": [
"7",
"7.5",
"8",
"8.5",
"9",
"9.5",
"10",
"10.5",
"11.5",
"12"
],
"gender": "unisex",
"createdAt": "2018-06-11T05:41:23.870Z"
}