Jordan Air Jordan 4 (Red/Brown)
Jordan
USD90.00
sneakers / #8
Jordan
USD90.00
curl -sS \
"https://example-data.com/api/v1/sneakers/8" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/sneakers/8"
);
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/8"
);
const sneaker = (await res.json()) as Sneaker;import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/8"
)
sneaker = res.json() {
"id": 8,
"brand": "Jordan",
"model": "Air Jordan 4",
"colorway": "Red/Brown",
"style": "Skateboarding",
"releaseDate": "2016-09-19",
"retailPrice": 90,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-8/800/600",
"sizesAvailable": [
"7",
"7.5",
"9.5",
"10",
"10.5",
"11",
"13"
],
"gender": "unisex",
"createdAt": "2016-09-19T05:59:31.214Z"
}