Nike Air Max 1 (Red/Navy)
Nike
USD140.00
sneakers / #29
Nike
USD140.00
curl -sS \
"https://example-data.com/api/v1/sneakers/29" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/sneakers/29"
);
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/29"
);
const sneaker = (await res.json()) as Sneaker;import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/29"
)
sneaker = res.json() {
"id": 29,
"brand": "Nike",
"model": "Air Max 1",
"colorway": "Red/Navy",
"style": "Skateboarding",
"releaseDate": "2024-01-04",
"retailPrice": 140,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-29/800/600",
"sizesAvailable": [
"3.5Y",
"5.5Y",
"6Y",
"6.5Y"
],
"gender": "youth",
"createdAt": "2024-01-04T09:30:35.883Z"
}