Adidas Forum Low (Yellow/Black)
Adidas
USD305.00
sneakers / #72
Adidas
USD305.00
curl -sS \
"https://example-data.com/api/v1/sneakers/72" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/sneakers/72"
);
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/72"
);
const sneaker = (await res.json()) as Sneaker;import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/72"
)
sneaker = res.json() {
"id": 72,
"brand": "Adidas",
"model": "Forum Low",
"colorway": "Yellow/Black",
"style": "Trail",
"releaseDate": "2016-12-16",
"retailPrice": 305,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-72/800/600",
"sizesAvailable": [
"5",
"5.5",
"6.5",
"7",
"8",
"8.5",
"9",
"10"
],
"gender": "women",
"createdAt": "2016-12-16T20:21:34.512Z"
}