Jordan Air Jordan 3 (White/Gray/Pink)
Jordan
USD325.00
sneakers / #28
Jordan
USD325.00
curl -sS \
"https://example-data.com/api/v1/sneakers/28" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/sneakers/28"
);
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/28"
);
const sneaker = (await res.json()) as Sneaker;import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/28"
)
sneaker = res.json() {
"id": 28,
"brand": "Jordan",
"model": "Air Jordan 3",
"colorway": "White/Gray/Pink",
"style": "Skateboarding",
"releaseDate": "2018-10-10",
"retailPrice": 325,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-28/800/600",
"sizesAvailable": [
"7.5",
"8",
"8.5",
"9",
"9.5",
"10",
"10.5",
"11",
"13"
],
"gender": "men",
"createdAt": "2018-10-10T15:54:11.086Z"
}