Puma Future Rider (Gray/Blue)
Puma
USD270.00
sneakers / #61
Puma
USD270.00
curl -sS \
"https://example-data.com/api/v1/sneakers/61" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/sneakers/61"
);
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/61"
);
const sneaker = (await res.json()) as Sneaker;import requests
res = requests.get(
"https://example-data.com/api/v1/sneakers/61"
)
sneaker = res.json() {
"id": 61,
"brand": "Puma",
"model": "Future Rider",
"colorway": "Gray/Blue",
"style": "Running",
"releaseDate": "2023-06-16",
"retailPrice": 270,
"currency": "USD",
"imageUrl": "https://picsum.photos/seed/sneaker-61/800/600",
"sizesAvailable": [
"8.5",
"11",
"12",
"13"
],
"gender": "men",
"createdAt": "2023-06-16T19:00:32.424Z"
}