Asics Gel-Kayano 14 (Gray/Black)
Asics
USD315.00
sneakers / #67
Asics
USD315.00
curl -sS \
"https://example-data.com/api/v1/sneakers/67" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/sneakers/67"
);
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/67"
);
const sneaker = (await res.json()) as Sneaker;import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/67"
)
sneaker = res.json() {
"id": 67,
"brand": "Asics",
"model": "Gel-Kayano 14",
"colorway": "Gray/Black",
"style": "Training",
"releaseDate": "2020-06-25",
"retailPrice": 315,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-67/800/600",
"sizesAvailable": [
"6",
"6.5",
"7",
"7.5",
"8",
"8.5",
"9.5"
],
"gender": "women",
"createdAt": "2020-06-25T10:59:48.043Z"
}