Adidas Stan Smith (Brown/Tan)
Adidas
USD240.00
sneakers / #73
Adidas
USD240.00
curl -sS \
"https://example-data.com/api/v1/sneakers/73" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/sneakers/73"
);
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/73"
);
const sneaker = (await res.json()) as Sneaker;import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/73"
)
sneaker = res.json() {
"id": 73,
"brand": "Adidas",
"model": "Stan Smith",
"colorway": "Brown/Tan",
"style": "Training",
"releaseDate": "2023-08-27",
"retailPrice": 240,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-73/800/600",
"sizesAvailable": [
"7",
"8",
"8.5",
"9",
"9.5",
"10.5",
"11.5",
"12",
"13"
],
"gender": "unisex",
"createdAt": "2023-08-27T19:33:37.195Z"
}