Jordan Air Jordan 11 (White/Red/Black)
Jordan
USD115.00
sneakers / #19
Jordan
USD115.00
curl -sS \
"https://example-data.com/api/v1/sneakers/19" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/sneakers/19"
);
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/19"
);
const sneaker = (await res.json()) as Sneaker;import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/19"
)
sneaker = res.json() {
"id": 19,
"brand": "Jordan",
"model": "Air Jordan 11",
"colorway": "White/Red/Black",
"style": "Trail",
"releaseDate": "2022-09-16",
"retailPrice": 115,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-19/800/600",
"sizesAvailable": [
"3.5Y",
"4Y",
"4.5Y",
"5Y",
"5.5Y",
"6Y",
"6.5Y",
"7Y"
],
"gender": "youth",
"createdAt": "2022-09-16T08:28:18.647Z"
}