Jordan Air Jordan 11 (Cream/Green)
Jordan
USD110.00
sneakers / #57
Jordan
USD110.00
curl -sS \
"https://example-data.com/api/v1/sneakers/57" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/sneakers/57"
);
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/57"
);
const sneaker = (await res.json()) as Sneaker;import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/57"
)
sneaker = res.json() {
"id": 57,
"brand": "Jordan",
"model": "Air Jordan 11",
"colorway": "Cream/Green",
"style": "Skateboarding",
"releaseDate": "2017-01-24",
"retailPrice": 110,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-57/800/600",
"sizesAvailable": [
"5",
"6.5",
"8.5",
"9",
"9.5",
"10"
],
"gender": "women",
"createdAt": "2017-01-24T06:03:04.198Z"
}