Nike Air Force 1 (Gray/White/Pink)
Nike
USD325.00
sneakers / #78
Nike
USD325.00
curl -sS \
"https://example-data.com/api/v1/sneakers/78" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/sneakers/78"
);
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/78"
);
const sneaker = (await res.json()) as Sneaker;import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/78"
)
sneaker = res.json() {
"id": 78,
"brand": "Nike",
"model": "Air Force 1",
"colorway": "Gray/White/Pink",
"style": "Basketball",
"releaseDate": "2020-02-11",
"retailPrice": 325,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-78/800/600",
"sizesAvailable": [
"5.5",
"6.5",
"7",
"7.5",
"8",
"8.5",
"9.5",
"10"
],
"gender": "women",
"createdAt": "2020-02-11T18:30:42.854Z"
}