Adidas Forum Low (Red/Navy)
Adidas
USD310.00
sneakers / #64
Adidas
USD310.00
curl -sS \
"https://example-data.com/api/v1/sneakers/64" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/sneakers/64"
);
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/64"
);
const sneaker = (await res.json()) as Sneaker;import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/64"
)
sneaker = res.json() {
"id": 64,
"brand": "Adidas",
"model": "Forum Low",
"colorway": "Red/Navy",
"style": "Running",
"releaseDate": "2016-08-27",
"retailPrice": 310,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-64/800/600",
"sizesAvailable": [
"4Y",
"4.5Y",
"5Y",
"5.5Y",
"6Y",
"6.5Y",
"7Y"
],
"gender": "youth",
"createdAt": "2016-08-27T23:10:26.980Z"
}